layout/reftests/svg/stroke-dashoffset-01.svg

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 <!--
michael@0 2 Any copyright is dedicated to the Public Domain.
michael@0 3 http://creativecommons.org/publicdomain/zero/1.0/
michael@0 4 -->
michael@0 5 <svg xmlns="http://www.w3.org/2000/svg">
michael@0 6 <title>Test that stroke-dashoffset is independent of stroke-width</title>
michael@0 7 <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=885585 -->
michael@0 8
michael@0 9 <rect width="100%" height="100%" fill="lime"/>
michael@0 10
michael@0 11 <path d="M10,30 h300" stroke="red" stroke-width="40" stroke-dashoffset="10" stroke-dasharray="50"/>
michael@0 12 <path d="M10,70 h300" stroke="red" stroke-width="20" stroke-dashoffset="20" stroke-dasharray="50"/>
michael@0 13 <path d="M10,95 h300" stroke="red" stroke-width="10" stroke-dashoffset="40" stroke-dasharray="50"/>
michael@0 14
michael@0 15 <!-- if the stroke-dashoffset is independent of the stroke width then these should cover what's above -->
michael@0 16 <rect x="10" y="10" width="40" height="40" fill="lime"/>
michael@0 17 <rect x="100" y="10" width="50" height="40" fill="lime"/>
michael@0 18 <rect x="200" y="10" width="50" height="40" fill="lime"/>
michael@0 19 <rect x="300" y="10" width="10" height="40" fill="lime"/>
michael@0 20
michael@0 21 <rect x="10" y="60" width="30" height="20" fill="lime"/>
michael@0 22 <rect x="90" y="60" width="50" height="20" fill="lime"/>
michael@0 23 <rect x="190" y="60" width="50" height="20" fill="lime"/>
michael@0 24 <rect x="290" y="60" width="20" height="20" fill="lime"/>
michael@0 25
michael@0 26 <rect x="10" y="90" width="10" height="10" fill="lime"/>
michael@0 27 <rect x="70" y="90" width="50" height="10" fill="lime"/>
michael@0 28 <rect x="170" y="90" width="50" height="10" fill="lime"/>
michael@0 29 <rect x="270" y="90" width="40" height="10" fill="lime"/>
michael@0 30 </svg>

mercurial