mirror of
https://github.com/servo/servo.git
synced 2025-09-02 19:18:23 +01:00
Update web-platform-tests to revision e8bfc205e36ad699601212cd50083870bad9a75d
This commit is contained in:
parent
65dd6d4340
commit
ccdb0a3458
1428 changed files with 118036 additions and 9786 deletions
2
tests/wpt/web-platform-tests/svg/shapes/rect-01-ref.html
Normal file
2
tests/wpt/web-platform-tests/svg/shapes/rect-01-ref.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<div style="position: absolute; top: 10px; left: 10px; width: 50px; height: 50px; background-color: blue;"></div>
|
9
tests/wpt/web-platform-tests/svg/shapes/rect-01.svg
Normal file
9
tests/wpt/web-platform-tests/svg/shapes/rect-01.svg
Normal 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 |
2
tests/wpt/web-platform-tests/svg/shapes/rect-02-ref.html
Normal file
2
tests/wpt/web-platform-tests/svg/shapes/rect-02-ref.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<div style="position: absolute; top: 8px; left: 8px; width: 46px; height: 46px; border: 4px solid blue;"></div>
|
9
tests/wpt/web-platform-tests/svg/shapes/rect-02.svg
Normal file
9
tests/wpt/web-platform-tests/svg/shapes/rect-02.svg
Normal 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 |
2
tests/wpt/web-platform-tests/svg/shapes/rect-03-ref.html
Normal file
2
tests/wpt/web-platform-tests/svg/shapes/rect-03-ref.html
Normal 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>
|
9
tests/wpt/web-platform-tests/svg/shapes/rect-03.svg
Normal file
9
tests/wpt/web-platform-tests/svg/shapes/rect-03.svg
Normal 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 |
7
tests/wpt/web-platform-tests/svg/shapes/rect-04-ref.html
Normal file
7
tests/wpt/web-platform-tests/svg/shapes/rect-04-ref.html
Normal 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>
|
9
tests/wpt/web-platform-tests/svg/shapes/rect-04.svg
Normal file
9
tests/wpt/web-platform-tests/svg/shapes/rect-04.svg
Normal 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 |
Loading…
Add table
Add a link
Reference in a new issue