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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/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
(Empty)
1 <head>
2 <style>
3 div {
4 float:left;
5 width:100px;
6 height:100px;
7 background-color:skyblue;
8 border: 5px solid black;
9 margin:5px;
10 }
11 .matrix{ transform: matrix(1, 0, 0, 1, 0, 0); }
12 </style>
13 </head>
14 <body>
15 The following divs should be identical:
16 <br>
17
18 <div></div>
19 <div class="matrix"></div>
20 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698