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

Unified Diff: LayoutTests/svg/custom/pattern-in-defs.svg

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/pattern-in-defs.svg
diff --git a/LayoutTests/svg/custom/pattern-in-defs.svg b/LayoutTests/svg/custom/pattern-in-defs.svg
index 02eddea085eb1605338580f43a0e515ec4f67078..ab3c723bb0276355e424bcef37c3cc0f8dfd20bc 100644
--- a/LayoutTests/svg/custom/pattern-in-defs.svg
+++ b/LayoutTests/svg/custom/pattern-in-defs.svg
@@ -1,6 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
<defs>
- <pattern id="green" x="0" y="0" width="100" height="100">
+ <pattern id="green" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="100" height="100" fill="green"/>
</pattern>
</defs>

Powered by Google App Engine
This is Rietveld 408576698