1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/fallback-color-04.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/publicdomain/zero/1.0/ 1.7 +--> 1.8 +<svg xmlns="http://www.w3.org/2000/svg" > 1.9 + 1.10 + <title>Testcase for fallback colours</title> 1.11 + 1.12 + <defs> 1.13 + <filter id="dilate"> 1.14 + <feMorphology operator="dilate" radius="6"/> 1.15 + </filter> 1.16 + </defs> 1.17 + 1.18 + <rect x="0%" y="0%" width="100%" height="100%" fill="lime"/> 1.19 + <text x="10" y="50" font-size="50" 1.20 + stroke-width="8" stroke="red" fill="none"> 1.21 + A B 1.22 + </text> 1.23 + <text x="10" y="50" font-size="50" 1.24 + stroke-width="8" stroke="url(#null) lime" fill="none" filter="url(#dilate)"> 1.25 + A B 1.26 + </text> 1.27 + <text x="200" y="50" font-size="50" fill="red"> 1.28 + A B 1.29 + </text> 1.30 + <text x="200" y="50" font-size="50" fill="url(#null) lime" filter="url(#dilate)"> 1.31 + A B 1.32 + </text> 1.33 + <text x="10" y="200" font-size="50" fill="red" 1.34 + stroke-width="1" stroke="red"> 1.35 + A B 1.36 + </text> 1.37 + <text x="10" y="200" font-size="50" fill="url(#null) lime" 1.38 + stroke-width="1" stroke="url(#null) lime" filter="url(#dilate)"> 1.39 + A B 1.40 + </text> 1.41 +</svg>