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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698