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

Side by Side Diff: LayoutTests/animations/animation-offscreen-to-onscreen-expected.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> 2 <head>
3 <style type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 body { 4 body {
5 margin: 0; 5 margin: 0;
6 } 6 }
7 7
8 #box { 8 #box {
9 position: absolute; 9 position: absolute;
10 left: 0px; 10 left: 0px;
11 top: 100px; 11 top: 100px;
12 height: 100px; 12 height: 100px;
13 width: 100px; 13 width: 100px;
14 margin: 0; 14 margin: 0;
15 background-color: green; 15 background-color: green;
16 -webkit-transform: translate(100px, 0px); 16 transform: translate(100px, 0px);
17 } 17 }
18 </style> 18 </style>
19 </head> 19 </head>
20 <body> 20 <body>
21 <div id="box"></div> 21 <div id="box"></div>
22 <div id="result"> 22 <div id="result">
23 PASS - "webkitTransform" property for "box" element at 0.5s saw something close to: 1,0,0,1,100,0 23 PASS - "webkitTransform" property for "box" element at 0.5s saw something close to: 1,0,0,1,100,0
24 </div> 24 </div>
25 </body> 25 </body>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/animations/animation-offscreen-to-onscreen.html ('k') | LayoutTests/animations/animation-on-inline-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698