Skip to content

Instantly share code, notes, and snippets.

@basecode
Created April 30, 2012 07:57
Show Gist options
  • Save basecode/2556377 to your computer and use it in GitHub Desktop.
Save basecode/2556377 to your computer and use it in GitHub Desktop.
SVG Patterns Webkit Bug (see: https://bugs.webkit.org/show_bug.cgi?id=75741)
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" style="border:1px solid black;" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="400">
<defs>
<!-- default patternUnits is "objectBoundingBox" and patternContentUnits is "userSpaceOnUse" //-->
<pattern width="1" height="1" x="0" y="0" id="aFillPattern">
<rect x="10" y="10" width="100" height="100" fill="url(#aFillPattern)"/>
</pattern>
</defs>
<rect x="50" y="50" width="300" height="300" fill="url(#aFillPattern)" stroke="blue" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment