Update web-platform-tests to revision de9a09ab7f605aed6a4b53ed96427412bab76463

This commit is contained in:
WPT Sync Bot 2018-12-01 20:48:01 -05:00
parent f3f9303fc9
commit 73a776843f
225 changed files with 5750 additions and 2858 deletions

View file

@ -0,0 +1,50 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
<title>Disabled shapes are not rendered</title>
<metadata>
<h:link rel="help" href="https://svgwg.org/svg2-draft/shapes.html#RectElement"/>
<h:link rel="help" href="https://svgwg.org/svg2-draft/shapes.html#CircleElement"/>
<h:link rel="help" href="https://svgwg.org/svg2-draft/shapes.html#EllipseElement"/>
<h:link rel="match" href="support/empty.svg"/>
</metadata>
<g stroke="red" stroke-width="100">
<g transform="translate(50, 50)">
<rect/>
<rect width="0" height="10"/>
<rect width="-10" height="10"/>
<rect height="0" width="10"/>
<rect height="-10" width="10"/>
<rect style="width: 0"/>
<rect style="width: 0" height="10"/>
<rect style="width: -10px"/>
<rect style="width: -10px" height="10"/>
<rect style="height: 0"/>
<rect style="height: 0" width="10"/>
<rect style="height: -10px"/>
<rect style="height: -10px" width="10"/>
</g>
<g transform="translate(150, 50)">
<circle/>
<circle r="0"/>
<circle r="-10"/>
<circle style="r: 0"/>
<circle style="r: -10px"/>
</g>
<g transform="translate(250, 50)">
<ellipse/>
<ellipse rx="0"/>
<ellipse rx="0" ry="10"/>
<ellipse rx="-10" ry="10"/>
<ellipse ry="0"/>
<ellipse ry="0" rx="10"/>
<ellipse ry="-10" rx="10"/>
<ellipse style="rx: 0"/>
<ellipse style="rx: -10px"/>
<ellipse style="rx: 0" ry="10"/>
<ellipse style="ry: 0"/>
<ellipse style="ry: -10px"/>
<ellipse style="ry: 0" rx="10"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg"/>

After

Width:  |  Height:  |  Size: 42 B