Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/option-element-crash.html

Issue 2966953002: Move animations crash tests to subdirectory (Closed)
Patch Set: Rename crash-tests/ to stability/ Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698