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

Side by Side Diff: LayoutTests/animations/3d/replace-filling-transform-expected.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #box { 5 #box {
6 position: absolute; 6 position: absolute;
7 height: 100px; 7 height: 100px;
8 width: 100px; 8 width: 100px;
9 background-color: green; 9 background-color: green;
10 -webkit-transform: translate3d(50px, 200px, 0); 10 transform: translate3d(50px, 200px, 0);
11 } 11 }
12 </style> 12 </style>
13 </head> 13 </head>
14 <body> 14 <body>
15 <div id="box"> 15 <div id="box">
16 </div> 16 </div>
17 <div id="result"> 17 <div id="result">
18 PASS - final state was matrix(1, 0, 0, 1, 50, 200) 18 PASS - final state was matrix(1, 0, 0, 1, 50, 200)
19 </div> 19 </div>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698