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

Unified Diff: LayoutTests/svg/transforms/svg-css-transforms-clip-path.xhtml

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/transforms/svg-css-transforms-clip-path.xhtml
diff --git a/LayoutTests/svg/transforms/svg-css-transforms-clip-path.xhtml b/LayoutTests/svg/transforms/svg-css-transforms-clip-path.xhtml
index afe31c67f12de04e45bd23f3a23751cd8cb93f95..1729766d67782bb16cc7ded3a88a92b0c39aa9ad 100644
--- a/LayoutTests/svg/transforms/svg-css-transforms-clip-path.xhtml
+++ b/LayoutTests/svg/transforms/svg-css-transforms-clip-path.xhtml
@@ -48,7 +48,7 @@
<div class="container">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
- <circle id="circle1" cx="10" cy="10" r="20" style="-webkit-transform:scale(5)"/>
+ <circle id="circle1" cx="10" cy="10" r="20" style="transform:scale(5)"/>
<clipPath id="clip-circle1">
<use xlink:href="#circle1"/>
</clipPath>
@@ -76,7 +76,7 @@
<div class="container">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
- <rect id="rect1" x="1" y="1" width="40" height="40" style="-webkit-transform:rotate(45deg) scale(5)"/>
+ <rect id="rect1" x="1" y="1" width="40" height="40" style="transform:rotate(45deg) scale(5)"/>
<clipPath id="clip-rect1">
<use xlink:href="#rect1"/>
</clipPath>

Powered by Google App Engine
This is Rietveld 408576698