Bug 1416754 - Reftest. r=longsonr draft
authorBotond Ballo <botond@mozilla.com>
Fri, 17 Nov 2017 15:19:34 -0500
changeset 699817 60fe483c9d650ba3dc0eddddb46f302c24ded37a
parent 698522 95bc906f923de229f6af63473f263e07d81e60ff
child 740744 ce52daf3c908266728e61fa9f94fe7c4a59fd790
push id89697
push userbballo@mozilla.com
push dateFri, 17 Nov 2017 20:20:01 +0000
reviewerslongsonr
bugs1416754
milestone59.0a1
Bug 1416754 - Reftest. r=longsonr MozReview-Commit-ID: Kd0umDQxYsH
layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001-ref.html
layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html
layout/reftests/svg/svg-integration/clip-path/reftest.list
new file mode 100644
--- /dev/null
+++ b/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001-ref.html
@@ -0,0 +1,5 @@
+<svg>
+    <g>
+        <circle cx="50" cy="50" r="50" style="fill: green;"></circle>
+    </g>
+</svg>
new file mode 100644
--- /dev/null
+++ b/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html
@@ -0,0 +1,10 @@
+<svg>
+    <defs>
+        <clipPath id="clip" transform="translate(-50,0)">
+            <rect x="0" y="0" width="100" height="100" transform="translate(50,0)"></rect>
+        </clipPath>
+    </defs>
+    <g clip-path="url(#clip)">
+        <circle cx="50" cy="50" r="50" style="fill: green;"></circle>
+    </g>
+</svg>
--- a/layout/reftests/svg/svg-integration/clip-path/reftest.list
+++ b/layout/reftests/svg/svg-integration/clip-path/reftest.list
@@ -52,8 +52,10 @@ fuzzy-if(webrender,64-64,1106-1106) == c
 == clip-path-inset-001c.html clip-path-inset-001-ref.html
 # Anti-aliasing behavior for masking and borders is different
 fuzzy(64,146) fails-if(webrender) == clip-path-inset-002a.html clip-path-inset-002-ref.html
 fuzzy(64,146) fails-if(webrender) == clip-path-inset-002b.html clip-path-inset-002-ref.html
 fuzzy(64,146) fails-if(webrender) == clip-path-inset-002c.html clip-path-inset-002-ref.html
 fuzzy(64,340) fails-if(webrender) == clip-path-inset-003.html clip-path-inset-003-ref.html
 
 == clip-path-stroke-001.html clip-path-stroke-001-ref.html
+
+== clip-path-transform-001.html clip-path-transform-001-ref.html