1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/use-01.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 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" version="1.1" 1.9 + xmlns:xlink="http://www.w3.org/1999/xlink"> 1.10 + <title>Testing that 'use' with zero width/height is not displayed</title> 1.11 + <defs> 1.12 + <rect id="red" width="100" height="100" fill="red"/> 1.13 + <rect id="lime" width="100" height="100" fill="lime"/> 1.14 + </defs> 1.15 + <rect width="100%" height="100%" fill="lime"/> 1.16 + 1.17 + <!-- zero width/height should disable --> 1.18 + <use x="0" y="0" width="0" xlink:href="#red"/> 1.19 + <use x="150" y="0" height="0" xlink:href="#red"/> 1.20 + 1.21 + <rect x="0" y="150" width="100" height="100" fill="red"/> 1.22 + <!-- no width/height specified should display though --> 1.23 + <use x="0" y="150" xlink:href="#lime"/> 1.24 +</svg>