Update web-platform-tests to revision 4052654d786236b493d2df3cb80b9d3d1d0a8354

This commit is contained in:
WPT Sync Bot 2018-12-12 21:08:47 -05:00
parent eab848df3e
commit 3b6ddd885a
116 changed files with 4255 additions and 821 deletions

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<svg id="svg-root"
width="310" height="170" viewBox="0, 0, 620, 340"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:html="http://www.w3.org/1999/xhtml">
<title>Percentages in shapes</title>
<html:link rel="help" href="https://svgwg.org/svg2-draft/geometry.html"/>
<html:link rel="match" href="percentage-ref.svg" />
<style>
svg {
fill: none;
stroke-width: 30px;
}
</style>
<circle cx="70%" cy="60%" r="50%" stroke="cyan" />
<ellipse cx="40%" cy="30%" rx="10%" ry="20%" stroke="green" />
<rect x="10%" y="20%" width="70%" height="60%" stroke="blue" />
</svg>

After

Width:  |  Height:  |  Size: 681 B

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<svg id="svg-root"
width="310" height="170" viewBox="0, 0, 620, 340"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:html="http://www.w3.org/1999/xhtml">
<style>
svg {
fill: none;
stroke-width: 30px;
}
</style>
<circle cx="434" cy="204" r="250" stroke="cyan" />
<ellipse cx="248" cy="102" rx="62" ry="68" stroke="green" />
<rect x="62" y="68" width="434" height="204" stroke="blue" />
</svg>

After

Width:  |  Height:  |  Size: 507 B

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<svg id="svg-root"
width="310" height="170" viewBox="0, 0, 620, 340"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:html="http://www.w3.org/1999/xhtml">
<title>Percentages in shapes</title>
<html:link rel="help" href="https://svgwg.org/svg2-draft/geometry.html"/>
<html:link rel="match" href="percentage-ref.svg" />
<style>
svg {
fill: none;
stroke-width: 30px;
}
circle {
cx: 70%;
cy: 60%;
r: 50%;
}
ellipse {
cx: 40%;
cy: 30%;
rx: 10%;
ry: 20%;
}
rect {
x: 10%;
y: 20%;
width: 70%;
height: 60%;
}
</style>
<circle stroke="cyan" />
<ellipse stroke="green" />
<rect stroke="blue" />
</svg>

After

Width:  |  Height:  |  Size: 803 B