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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/stability/deleted-image-set-transition-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 div { background: url(#); } 3 div { background: url(#); }
4 div { background: -webkit-image-set(url(#) 1x); } 4 div { background: -webkit-image-set(url(#) 1x); }
5 </style> 5 </style>
6 <div style="transition: 1s">This test passes if it does not crash.</div> 6 <div style="transition: 1s">This test passes if it does not crash.</div>
7 <script> 7 <script>
8 if (window.testRunner) { 8 if (window.testRunner) {
9 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
10 testRunner.waitUntilDone(); 10 testRunner.waitUntilDone();
11 } 11 }
12 window.addEventListener('load', function() { 12 window.addEventListener('load', function() {
13 document.styleSheets[0].deleteRule(1); 13 document.styleSheets[0].deleteRule(1);
14 if (window.testRunner) { 14 if (window.testRunner) {
15 testRunner.notifyDone(); 15 testRunner.notifyDone();
16 } 16 }
17 }); 17 });
18 </script> 18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698