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

Side by Side Diff: LayoutTests/animations/body-removal-crash.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 <html> 1 <html>
2 <head id="b"> 2 <head id="b">
3 <style id="a" type="text/css" media="screen"> 3 <style id="a" type="text/css" media="screen">
4 #box { 4 #box {
5 -webkit-animation-duration: 2s; 5 -webkit-animation-duration: 2s;
6 -webkit-animation-timing-function: linear; 6 -webkit-animation-timing-function: linear;
7 -webkit-animation-name: anim; 7 -webkit-animation-name: anim;
8 background-color: blue; 8 background-color: blue;
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
11 } 11 }
12 @-webkit-keyframes anim { 12 @-webkit-keyframes anim {
13 from { -webkit-transform: rotate(0) scale(1,1); } 13 from { transform: rotate(0) scale(1,1); }
14 to { -webkit-transform: rotate(360deg) scale(2,4); } 14 to { transform: rotate(360deg) scale(2,4); }
15 } 15 }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <div id="box"> 19 <div id="box">
20 </div> 20 </div>
21 <p>This should not crash</p> 21 <p>This should not crash</p>
22 </body> 22 </body>
23 </html> 23 </html>
24 24
(...skipping 18 matching lines...) Expand all
43 testRunner.notifyDone(); 43 testRunner.notifyDone();
44 } 44 }
45 45
46 if (window.testRunner) { 46 if (window.testRunner) {
47 testRunner.dumpAsText(); 47 testRunner.dumpAsText();
48 testRunner.waitUntilDone(); 48 testRunner.waitUntilDone();
49 } 49 }
50 50
51 crash(); 51 crash();
52 </script> 52 </script>
OLDNEW
« no previous file with comments | « LayoutTests/animations/big-rotation.html ('k') | LayoutTests/animations/change-transform-style-during-animation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698