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

Side by Side Diff: LayoutTests/fast/transforms/diamond.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 <head> 1 <head>
2 <style> 2 <style>
3 div { 3 div {
4 width:100px; 4 width:100px;
5 height:100px; 5 height:100px;
6 background-color:skyblue; 6 background-color:skyblue;
7 float:left; 7 float:left;
8 border: 5px solid black; 8 border: 5px solid black;
9 margin:5px; 9 margin:5px;
10 } 10 }
11 11
12 .rotated { 12 .rotated {
13 -webkit-transform: rotate(45deg); 13 transform: rotate(45deg);
14 } 14 }
15 </style> 15 </style>
16 <p>You should see three blocks below. The middle one should look like a diamond because it has been rotated 45 degrees.</p> 16 <p>You should see three blocks below. The middle one should look like a diamond because it has been rotated 45 degrees.</p>
17 17
18 <div></div> 18 <div></div>
19 19
20 <div class="rotated"></div> 20 <div class="rotated"></div>
21 21
22 <div></div> 22 <div></div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/transforms/container-transform-crash.html ('k') | LayoutTests/fast/transforms/hit-test-large-scale.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698