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

Unified Diff: LayoutTests/svg/custom/absolute-root-position-masking.xhtml

Issue 453653003: [SVG] DisplayList-based patterns. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments 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/custom/absolute-root-position-masking.xhtml
diff --git a/LayoutTests/svg/custom/absolute-root-position-masking.xhtml b/LayoutTests/svg/custom/absolute-root-position-masking.xhtml
index 272e9685457016f38ddd90e8236800189e4e8749..14423e50ca3257047a4ccab816e97e5c43b8558b 100644
--- a/LayoutTests/svg/custom/absolute-root-position-masking.xhtml
+++ b/LayoutTests/svg/custom/absolute-root-position-masking.xhtml
@@ -4,10 +4,10 @@
<svg:svg id="svg" width="300" height="300" style="position: absolute; top: 100px; left: 0px;">
<svg:circle cx="300" cy="300" r="100" fill="blue" mask="url(#mask)"/>
<svg:defs>
- <svg:pattern id="pattern" width="600" height="600">
+ <svg:pattern id="pattern" width="600" height="600" patternUnits="userSpaceOnUse">
Stephen White 2014/10/22 15:11:26 What's the reason for the change here? Should we (
f(malita) 2014/10/22 16:23:46 We have plenty of coverage for OBB, this (and the
<svg:rect fill="white" width="600" height="600" />
</svg:pattern>
- <svg:mask id="mask" width="600" height="600">
+ <svg:mask id="mask" width="600" height="600" maskUnits="userSpaceOnUse">
<svg:rect fill="url(#pattern)" width="600" height="600" />
</svg:mask>
</svg:defs>

Powered by Google App Engine
This is Rietveld 408576698