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

Unified Diff: LayoutTests/compositing/direct-image-compositing.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/compositing/direct-image-compositing.html
diff --git a/LayoutTests/compositing/direct-image-compositing.html b/LayoutTests/compositing/direct-image-compositing.html
index 2fd91418a76e0c7a3ae1473a76acb3a23f077760..bfa6bb015c3948de316452bcc25af541a9bd8fba 100644
--- a/LayoutTests/compositing/direct-image-compositing.html
+++ b/LayoutTests/compositing/direct-image-compositing.html
@@ -12,7 +12,7 @@
height: 150px;
}
img {
- -webkit-transform: rotate3d(0, 0, 1, 0);
+ transform: rotate3d(0, 0, 1, 0);
}
.test {
float: left;
@@ -58,7 +58,7 @@
</div>
<div class="test">
- <img src="resources/simple_image.png" style="-webkit-transform: rotate3d(0, 0, 1, 10deg);">
+ <img src="resources/simple_image.png" style="transform: rotate3d(0, 0, 1, 10deg);">
rotated but otherwise no style - can be directly composited
</div>

Powered by Google App Engine
This is Rietveld 408576698