Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / web-animations-api / option-element-crash.html
blobaa9f04b862665ce2fc9179dced9fb55df0a54a39
1 This test passes if it does not crash.
3 <object>
4 <div>
5 <option id="testA"></option>
6 </div>
7 </option>
9 <video>
10 <option id="testB"></option>
11 </video>
13 <video>
14 <object>
15 <option id="testC"></option>
16 </object>
17 </video>
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>