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

Unified Diff: LayoutTests/transforms/2d/transform-value-types.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/transforms/2d/transform-value-types.html
diff --git a/LayoutTests/transforms/2d/transform-value-types.html b/LayoutTests/transforms/2d/transform-value-types.html
index 29761426cb26f05d1fb8bcccd7b0e8522c35183e..2a97d5b346e347162a5d9df7a454ec6e2ac960c4 100644
--- a/LayoutTests/transforms/2d/transform-value-types.html
+++ b/LayoutTests/transforms/2d/transform-value-types.html
@@ -4,7 +4,7 @@
<script src="../../resources/js-test.js"></script>
<style id="style" media="screen">
.non-existent-class {
- -webkit-transform: translate(10px)
+ transform: translate(10px)
translateX(10px)
translateY(10px)
rotate(10deg)
@@ -48,7 +48,7 @@
shouldBe("jsWrapperClass(" + expression + ".constructor)", "'" + constructorName + "'");
}
- var transformRule = stylesheet.cssRules.item(0).style.getPropertyCSSValue('-webkit-transform');
+ var transformRule = stylesheet.cssRules.item(0).style.getPropertyCSSValue('transform');
test("transformRule", "CSSValueList");
test("transformRule[0]", "WebKitCSSTransformValue");

Powered by Google App Engine
This is Rietveld 408576698