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

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js

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/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js
index 681d7c8b0d60e5c46d42f16e92a184659c8aa975..dfb4ba4993e8952c19f71187424e6e3cad826618 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGClipPathElement-css-transform-influences-hitTesting.js
@@ -13,7 +13,7 @@ clipPathElement.setAttribute("id", "clipper");
var clipRectElement = createSVGElement("rect");
clipRectElement.setAttribute("width", "5");
clipRectElement.setAttribute("height", "5");
-clipRectElement.setAttribute("style", "-webkit-transform: scale(20)");
+clipRectElement.setAttribute("style", "transform: scale(20)");
clipPathElement.appendChild(clipRectElement);
defsElement.appendChild(clipPathElement);

Powered by Google App Engine
This is Rietveld 408576698