Update web-platform-tests to revision e8bfc205e36ad699601212cd50083870bad9a75d

This commit is contained in:
Ms2ger 2016-11-14 11:07:09 +01:00
parent 65dd6d4340
commit ccdb0a3458
1428 changed files with 118036 additions and 9786 deletions

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div style="position: absolute; top: 10px; left: 10px; width: 50px; height: 50px; background-color: blue;"></div>

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="help" href="http://www.w3.org/TR/SVG2/shapes.html#RectElement"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="match" href="rect-01-ref.html"/>
<meta xmlns="http://www.w3.org/1999/xhtml" name="assert" content="rect element renders correctly."/>
</metadata>
<rect x="10" y="10" width="50" height="50" fill="blue"/>
</svg>

After

Width:  |  Height:  |  Size: 557 B

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div style="position: absolute; top: 8px; left: 8px; width: 46px; height: 46px; border: 4px solid blue;"></div>

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="help" href="http://www.w3.org/TR/SVG2/shapes.html#RectElement"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="match" href="rect-02-ref.html"/>
<meta xmlns="http://www.w3.org/1999/xhtml" name="assert" content="rect element with stroke renders correctly."/>
</metadata>
<rect x="10" y="10" width="50" height="50" fill="none" stroke="blue" stroke-width="4"/>
</svg>

After

Width:  |  Height:  |  Size: 600 B

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div style="position: absolute; top: 10px; left: 10px; width: 50px; height: 50px; border-radius: 8px; background-color: blue;"></div>

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="help" href="http://www.w3.org/TR/SVG2/shapes.html#RectElement"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="match" href="rect-03-ref.html"/>
<meta xmlns="http://www.w3.org/1999/xhtml" name="assert" content="rect element with rounded corners renders correctly."/>
</metadata>
<rect x="10" y="10" width="50" height="50" rx="8" ry="8" fill="blue"/>
</svg>

After

Width:  |  Height:  |  Size: 592 B

View file

@ -0,0 +1,7 @@
<!DOCTYPE html>
<!--
border-radius is 10px since it measures to the outside edge of the border,
as opposed to SVG's rect radius attributes, which measure to the middle
of the stroke
-->
<div style="position: absolute; top: 8px; left: 8px; width: 46px; height: 46px; border-radius: 10px; border: 4px solid blue;"></div>

View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="help" href="http://www.w3.org/TR/SVG2/shapes.html#RectElement"/>
<link xmlns="http://www.w3.org/1999/xhtml" rel="match" href="rect-04-ref.html"/>
<meta xmlns="http://www.w3.org/1999/xhtml" name="assert" content="rect element with rounded corners and stroke renders correctly."/>
</metadata>
<rect x="10" y="10" width="50" height="50" rx="8" ry="8" fill="none" stroke="blue" stroke-width="4"/>
</svg>

After

Width:  |  Height:  |  Size: 634 B