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

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/identity-matrix.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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 float:left; 4 float:left;
5 width:100px; 5 width:100px;
6 height:100px; 6 height:100px;
7 background-color:skyblue; 7 background-color:skyblue;
8 border: 5px solid black; 8 border: 5px solid black;
9 margin:5px; 9 margin:5px;
10 } 10 }
11 .matrix{ transform: matrix(1, 0, 0, 1, 0, 0); } 11 .matrix{ transform: matrix(1, 0, 0, 1, 0, 0); }
12 </style> 12 </style>
13 </head> 13 </head>
14 <body> 14 <body>
15 The following divs should be identical: 15 The following divs should be identical:
16 <br> 16 <br>
17 17
18 <div></div> 18 <div></div>
19 <div class="matrix"></div> 19 <div class="matrix"></div>
20 </body> 20 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698