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

Side by Side Diff: LayoutTests/css3/calc/transforms-scale-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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <style> 2 <style>
3 div { 3 div {
4 width:100px; 4 width:100px;
5 height:100px; 5 height:100px;
6 margin:50px; 6 margin:50px;
7 background-color:green; 7 background-color:green;
8 } 8 }
9 9
10 #scalex { 10 #scalex {
11 -webkit-transform: scalex(1.5); 11 transform: scalex(1.5);
12 } 12 }
13 #scaley { 13 #scaley {
14 -webkit-transform: scaley(0.75); 14 transform: scaley(0.75);
15 } 15 }
16 </style> 16 </style>
17 <div id="scalex">scale x</div> 17 <div id="scalex">scale x</div>
18 <div id="scaley">scale y</div> 18 <div id="scaley">scale y</div>
OLDNEW
« no previous file with comments | « LayoutTests/css3/calc/transforms-scale.html ('k') | LayoutTests/css3/calc/transforms-translate.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698