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

Unified Diff: LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.html
diff --git a/LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.html b/LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.html
index 1365a0ef67dc745c55d90e7f19f0e97535f1d666..e89d93d4a63f3ed88656c43c161ed77281d3947f 100644
--- a/LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.html
+++ b/LayoutTests/fast/dom/nodesFromRect/nodesFromRect-rotate.html
@@ -17,9 +17,9 @@
width: 300px;
height: 300px;
}
- .rotate45 { -webkit-transform: rotate(45deg); }
- .rotate90 { -webkit-transform: rotate(90deg); }
- .rotate180 { -webkit-transform: rotate(180deg); }
+ .rotate45 { transform: rotate(45deg); }
+ .rotate90 { transform: rotate(90deg); }
+ .rotate180 { transform: rotate(180deg); }
#layer > #fleft { float: left; width: 50px; height: 300px; }
#layer > #fright { float: right; width: 50px; height: 300px; }
#layer > .hbox { height: 100px; margin-right: 50px; margin-left: 50px }

Powered by Google App Engine
This is Rietveld 408576698