| OLD | NEW |
| (Empty) |
| 1 This test passes if it does not crash. | |
| 2 | |
| 3 <object> | |
| 4 <div> | |
| 5 <option id="testA"></option> | |
| 6 </div> | |
| 7 </option> | |
| 8 | |
| 9 <video> | |
| 10 <option id="testB"></option> | |
| 11 </video> | |
| 12 | |
| 13 <video> | |
| 14 <object> | |
| 15 <option id="testC"></option> | |
| 16 </object> | |
| 17 </video> | |
| 18 | |
| 19 <script> | |
| 20 if (window.testRunner) | |
| 21 testRunner.dumpAsText(); | |
| 22 testA.animate([{fontSize: 'large'}, {fontSize: '24px'}], 1000); | |
| 23 testB.animate([{fontSize: '6rem'}, {fontSize: 'x-large'}], 1000); | |
| 24 testC.animate([{outlineColor: 'invert'}, {outlineColor: 'inherit'}], 1000); | |
| 25 </script> | |
| OLD | NEW |