|
294 | 294 | | `action=(string 'on')`| (changed)| `"http://localhost:3000/on"` |
|
295 | 295 | | `action=(string 'off')`| (changed)| `"http://localhost:3000/off"` |
|
296 | 296 | | `action=(symbol)`| (initial, warning)| `"http://localhost:3000/"` |
|
297 |
| -| `action=(function)`| (initial, warning)| `"http://localhost:3000/"` | |
| 297 | +| `action=(function)`| (changed, ssr error, ssr mismatch)| `"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')"` | |
298 | 298 | | `action=(null)`| (initial)| `"http://localhost:3000/"` |
|
299 | 299 | | `action=(undefined)`| (initial)| `"http://localhost:3000/"` |
|
300 | 300 |
|
|
648 | 648 | | `aria-=(null)`| (initial, warning)| `<null>` |
|
649 | 649 | | `aria-=(undefined)`| (initial, warning)| `<null>` |
|
650 | 650 |
|
| 651 | +## `aria-hidden` (on `<div>` inside `<div>`) |
| 652 | +| Test Case | Flags | Result | |
| 653 | +| --- | --- | --- | |
| 654 | +| `aria-hidden=(string)`| (changed)| `"a string"` | |
| 655 | +| `aria-hidden=(empty string)`| (changed)| `<empty string>` | |
| 656 | +| `aria-hidden=(array with string)`| (changed)| `"string"` | |
| 657 | +| `aria-hidden=(empty array)`| (changed)| `<empty string>` | |
| 658 | +| `aria-hidden=(object)`| (changed)| `"result of toString()"` | |
| 659 | +| `aria-hidden=(numeric string)`| (changed)| `"42"` | |
| 660 | +| `aria-hidden=(-1)`| (changed)| `"-1"` | |
| 661 | +| `aria-hidden=(0)`| (changed)| `"0"` | |
| 662 | +| `aria-hidden=(integer)`| (changed)| `"1"` | |
| 663 | +| `aria-hidden=(NaN)`| (changed)| `"NaN"` | |
| 664 | +| `aria-hidden=(float)`| (changed)| `"99.99"` | |
| 665 | +| `aria-hidden=(true)`| (changed)| `"true"` | |
| 666 | +| `aria-hidden=(false)`| (changed)| `"false"` | |
| 667 | +| `aria-hidden=(string 'true')`| (changed)| `"true"` | |
| 668 | +| `aria-hidden=(string 'false')`| (changed)| `"false"` | |
| 669 | +| `aria-hidden=(string 'on')`| (changed)| `"on"` | |
| 670 | +| `aria-hidden=(string 'off')`| (changed)| `"off"` | |
| 671 | +| `aria-hidden=(symbol)`| (initial)| `<null>` | |
| 672 | +| `aria-hidden=(function)`| (initial)| `<null>` | |
| 673 | +| `aria-hidden=(null)`| (initial)| `<null>` | |
| 674 | +| `aria-hidden=(undefined)`| (initial)| `<null>` | |
| 675 | + |
651 | 676 | ## `aria-invalidattribute` (on `<div>` inside `<div>`)
|
652 | 677 | | Test Case | Flags | Result |
|
653 | 678 | | --- | --- | --- |
|
|
2568 | 2593 | | `defaultChecked=(string 'false')`| (changed)| `<boolean: true>` |
|
2569 | 2594 | | `defaultChecked=(string 'on')`| (changed)| `<boolean: true>` |
|
2570 | 2595 | | `defaultChecked=(string 'off')`| (changed)| `<boolean: true>` |
|
2571 |
| -| `defaultChecked=(symbol)`| (changed, ssr mismatch)| `<boolean: true>` | |
2572 |
| -| `defaultChecked=(function)`| (changed, ssr mismatch)| `<boolean: true>` | |
| 2596 | +| `defaultChecked=(symbol)`| (initial)| `<boolean: false>` | |
| 2597 | +| `defaultChecked=(function)`| (initial)| `<boolean: false>` | |
2573 | 2598 | | `defaultChecked=(null)`| (initial)| `<boolean: false>` |
|
2574 | 2599 | | `defaultChecked=(undefined)`| (initial)| `<boolean: false>` |
|
2575 | 2600 |
|
|
4176 | 4201 | ## `formAction` (on `<input>` inside `<div>`)
|
4177 | 4202 | | Test Case | Flags | Result |
|
4178 | 4203 | | --- | --- | --- |
|
4179 |
| -| `formAction=(string)`| (changed)| `"https://reactjs.com/"` | |
4180 |
| -| `formAction=(empty string)`| (initial)| `"http://localhost:3000/"` | |
4181 |
| -| `formAction=(array with string)`| (changed)| `"https://reactjs.com/"` | |
4182 |
| -| `formAction=(empty array)`| (initial)| `"http://localhost:3000/"` | |
4183 |
| -| `formAction=(object)`| (changed)| `"http://localhost:3000/result%20of%20toString()"` | |
4184 |
| -| `formAction=(numeric string)`| (changed)| `"http://localhost:3000/42"` | |
4185 |
| -| `formAction=(-1)`| (changed)| `"http://localhost:3000/-1"` | |
4186 |
| -| `formAction=(0)`| (changed)| `"http://localhost:3000/0"` | |
4187 |
| -| `formAction=(integer)`| (changed)| `"http://localhost:3000/1"` | |
| 4204 | +| `formAction=(string)`| (changed, warning)| `"https://reactjs.com/"` | |
| 4205 | +| `formAction=(empty string)`| (initial, warning)| `"http://localhost:3000/"` | |
| 4206 | +| `formAction=(array with string)`| (changed, warning)| `"https://reactjs.com/"` | |
| 4207 | +| `formAction=(empty array)`| (initial, warning)| `"http://localhost:3000/"` | |
| 4208 | +| `formAction=(object)`| (changed, warning)| `"http://localhost:3000/result%20of%20toString()"` | |
| 4209 | +| `formAction=(numeric string)`| (changed, warning)| `"http://localhost:3000/42"` | |
| 4210 | +| `formAction=(-1)`| (changed, warning)| `"http://localhost:3000/-1"` | |
| 4211 | +| `formAction=(0)`| (changed, warning)| `"http://localhost:3000/0"` | |
| 4212 | +| `formAction=(integer)`| (changed, warning)| `"http://localhost:3000/1"` | |
4188 | 4213 | | `formAction=(NaN)`| (changed, warning)| `"http://localhost:3000/NaN"` |
|
4189 |
| -| `formAction=(float)`| (changed)| `"http://localhost:3000/99.99"` | |
| 4214 | +| `formAction=(float)`| (changed, warning)| `"http://localhost:3000/99.99"` | |
4190 | 4215 | | `formAction=(true)`| (initial, warning)| `"http://localhost:3000/"` |
|
4191 | 4216 | | `formAction=(false)`| (initial, warning)| `"http://localhost:3000/"` |
|
4192 |
| -| `formAction=(string 'true')`| (changed)| `"http://localhost:3000/true"` | |
4193 |
| -| `formAction=(string 'false')`| (changed)| `"http://localhost:3000/false"` | |
4194 |
| -| `formAction=(string 'on')`| (changed)| `"http://localhost:3000/on"` | |
4195 |
| -| `formAction=(string 'off')`| (changed)| `"http://localhost:3000/off"` | |
| 4217 | +| `formAction=(string 'true')`| (changed, warning)| `"http://localhost:3000/true"` | |
| 4218 | +| `formAction=(string 'false')`| (changed, warning)| `"http://localhost:3000/false"` | |
| 4219 | +| `formAction=(string 'on')`| (changed, warning)| `"http://localhost:3000/on"` | |
| 4220 | +| `formAction=(string 'off')`| (changed, warning)| `"http://localhost:3000/off"` | |
4196 | 4221 | | `formAction=(symbol)`| (initial, warning)| `"http://localhost:3000/"` |
|
4197 |
| -| `formAction=(function)`| (initial, warning)| `"http://localhost:3000/"` | |
| 4222 | +| `formAction=(function)`| (changed, warning, ssr error, ssr mismatch)| `"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')"` | |
4198 | 4223 | | `formAction=(null)`| (initial)| `"http://localhost:3000/"` |
|
4199 | 4224 | | `formAction=(undefined)`| (initial)| `"http://localhost:3000/"` |
|
4200 | 4225 |
|
|
5052 | 5077 | | Test Case | Flags | Result |
|
5053 | 5078 | | --- | --- | --- |
|
5054 | 5079 | | `href=(string)`| (changed)| `"https://reactjs.com/"` |
|
5055 |
| -| `href=(empty string)`| (changed)| `"http://localhost:3000/"` | |
| 5080 | +| `href=(empty string)`| (initial, warning)| `<empty string>` | |
5056 | 5081 | | `href=(array with string)`| (changed)| `"https://reactjs.com/"` |
|
5057 | 5082 | | `href=(empty array)`| (changed)| `"http://localhost:3000/"` |
|
5058 | 5083 | | `href=(object)`| (changed)| `"http://localhost:3000/result%20of%20toString()"` |
|
|
5398 | 5423 | | `in=(null)`| (initial)| `<null>` |
|
5399 | 5424 | | `in=(undefined)`| (initial)| `<null>` |
|
5400 | 5425 |
|
| 5426 | +## `inert` (on `<div>` inside `<div>`) |
| 5427 | +| Test Case | Flags | Result | |
| 5428 | +| --- | --- | --- | |
| 5429 | +| `inert=(string)`| (changed)| `<boolean: true>` | |
| 5430 | +| `inert=(empty string)`| (changed)| `<boolean: true>` | |
| 5431 | +| `inert=(array with string)`| (changed)| `<boolean: true>` | |
| 5432 | +| `inert=(empty array)`| (changed)| `<boolean: true>` | |
| 5433 | +| `inert=(object)`| (changed)| `<boolean: true>` | |
| 5434 | +| `inert=(numeric string)`| (changed)| `<boolean: true>` | |
| 5435 | +| `inert=(-1)`| (changed)| `<boolean: true>` | |
| 5436 | +| `inert=(0)`| (changed)| `<boolean: true>` | |
| 5437 | +| `inert=(integer)`| (changed)| `<boolean: true>` | |
| 5438 | +| `inert=(NaN)`| (changed, warning)| `<boolean: true>` | |
| 5439 | +| `inert=(float)`| (changed)| `<boolean: true>` | |
| 5440 | +| `inert=(true)`| (initial, warning)| `<boolean: false>` | |
| 5441 | +| `inert=(false)`| (initial, warning)| `<boolean: false>` | |
| 5442 | +| `inert=(string 'true')`| (changed)| `<boolean: true>` | |
| 5443 | +| `inert=(string 'false')`| (changed)| `<boolean: true>` | |
| 5444 | +| `inert=(string 'on')`| (changed)| `<boolean: true>` | |
| 5445 | +| `inert=(string 'off')`| (changed)| `<boolean: true>` | |
| 5446 | +| `inert=(symbol)`| (initial, warning)| `<boolean: false>` | |
| 5447 | +| `inert=(function)`| (initial, warning)| `<boolean: false>` | |
| 5448 | +| `inert=(null)`| (initial)| `<boolean: false>` | |
| 5449 | +| `inert=(undefined)`| (initial)| `<boolean: false>` | |
| 5450 | + |
5401 | 5451 | ## `in2` (on `<feBlend>` inside `<svg>`)
|
5402 | 5452 | | Test Case | Flags | Result |
|
5403 | 5453 | | --- | --- | --- |
|
|
5501 | 5551 | ## `inputMode` (on `<input>` inside `<div>`)
|
5502 | 5552 | | Test Case | Flags | Result |
|
5503 | 5553 | | --- | --- | --- |
|
5504 |
| -| `inputMode=(string)`| (changed)| `"a string"` | |
5505 |
| -| `inputMode=(empty string)`| (changed)| `<empty string>` | |
5506 |
| -| `inputMode=(array with string)`| (changed)| `"string"` | |
5507 |
| -| `inputMode=(empty array)`| (changed)| `<empty string>` | |
5508 |
| -| `inputMode=(object)`| (changed)| `"result of toString()"` | |
5509 |
| -| `inputMode=(numeric string)`| (changed)| `"42"` | |
5510 |
| -| `inputMode=(-1)`| (changed)| `"-1"` | |
5511 |
| -| `inputMode=(0)`| (changed)| `"0"` | |
5512 |
| -| `inputMode=(integer)`| (changed)| `"1"` | |
5513 |
| -| `inputMode=(NaN)`| (changed, warning)| `"NaN"` | |
5514 |
| -| `inputMode=(float)`| (changed)| `"99.99"` | |
5515 |
| -| `inputMode=(true)`| (initial, warning)| `<null>` | |
5516 |
| -| `inputMode=(false)`| (initial, warning)| `<null>` | |
5517 |
| -| `inputMode=(string 'true')`| (changed)| `"true"` | |
5518 |
| -| `inputMode=(string 'false')`| (changed)| `"false"` | |
5519 |
| -| `inputMode=(string 'on')`| (changed)| `"on"` | |
5520 |
| -| `inputMode=(string 'off')`| (changed)| `"off"` | |
5521 |
| -| `inputMode=(symbol)`| (initial, warning)| `<null>` | |
5522 |
| -| `inputMode=(function)`| (initial, warning)| `<null>` | |
5523 |
| -| `inputMode=(null)`| (initial)| `<null>` | |
5524 |
| -| `inputMode=(undefined)`| (initial)| `<null>` | |
| 5554 | +| `inputMode=(string)`| (initial)| `<empty string>` | |
| 5555 | +| `inputMode=(empty string)`| (initial)| `<empty string>` | |
| 5556 | +| `inputMode=(array with string)`| (initial)| `<empty string>` | |
| 5557 | +| `inputMode=(empty array)`| (initial)| `<empty string>` | |
| 5558 | +| `inputMode=(object)`| (initial)| `<empty string>` | |
| 5559 | +| `inputMode=(numeric string)`| (initial)| `<empty string>` | |
| 5560 | +| `inputMode=(-1)`| (initial)| `<empty string>` | |
| 5561 | +| `inputMode=(0)`| (initial)| `<empty string>` | |
| 5562 | +| `inputMode=(integer)`| (initial)| `<empty string>` | |
| 5563 | +| `inputMode=(NaN)`| (initial, warning)| `<empty string>` | |
| 5564 | +| `inputMode=(float)`| (initial)| `<empty string>` | |
| 5565 | +| `inputMode=(true)`| (initial, warning)| `<empty string>` | |
| 5566 | +| `inputMode=(false)`| (initial, warning)| `<empty string>` | |
| 5567 | +| `inputMode=(string 'true')`| (initial)| `<empty string>` | |
| 5568 | +| `inputMode=(string 'false')`| (initial)| `<empty string>` | |
| 5569 | +| `inputMode=(string 'on')`| (initial)| `<empty string>` | |
| 5570 | +| `inputMode=(string 'off')`| (initial)| `<empty string>` | |
| 5571 | +| `inputMode=(symbol)`| (initial, warning)| `<empty string>` | |
| 5572 | +| `inputMode=(function)`| (initial, warning)| `<empty string>` | |
| 5573 | +| `inputMode=(null)`| (initial)| `<empty string>` | |
| 5574 | +| `inputMode=(undefined)`| (initial)| `<empty string>` | |
5525 | 5575 |
|
5526 | 5576 | ## `integrity` (on `<script>` inside `<div>`)
|
5527 | 5577 | | Test Case | Flags | Result |
|
|
9877 | 9927 | | Test Case | Flags | Result |
|
9878 | 9928 | | --- | --- | --- |
|
9879 | 9929 | | `src=(string)`| (changed)| `"https://reactjs.com/"` |
|
9880 |
| -| `src=(empty string)`| (changed)| `"http://localhost:3000/"` | |
| 9930 | +| `src=(empty string)`| (initial, warning)| `<empty string>` | |
9881 | 9931 | | `src=(array with string)`| (changed)| `"https://reactjs.com/"` |
|
9882 | 9932 | | `src=(empty array)`| (changed)| `"http://localhost:3000/"` |
|
9883 | 9933 | | `src=(object)`| (changed)| `"http://localhost:3000/result%20of%20toString()"` |
|
|
0 commit comments