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