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

Side by Side Diff: LayoutTests/fast/transforms/skew-with-unitless-zero.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> 3 <style>
4 div { 4 div {
5 width:100px; 5 width:100px;
6 height:100px; 6 height:100px;
7 border:10px solid black; 7 border:10px solid black;
8 background-color:skyblue; 8 background-color:skyblue;
9 margin:100px; 9 margin:100px;
10 } 10 }
11 11
12 .skew { 12 .skew {
13 -webkit-transform:skew(0, 45deg) 13 transform:skew(0, 45deg)
14 } 14 }
15 </style> 15 </style>
16 </head> 16 </head>
17 <body> 17 <body>
18 In the example below you should a y-skewed block (45 degree angle of skew). 18 In the example below you should a y-skewed block (45 degree angle of skew).
19 19
20 <div class="skew"></div> 20 <div class="skew"></div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/transforms/shadows.html ('k') | LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698