Update web-platform-tests to revision 0bfde9f6a8bfde0fde4dba73d7172a8eed6e946e

This commit is contained in:
WPT Sync Bot 2019-09-16 10:23:28 +00:00
parent 5d4dac8cf2
commit 6a79d6ee64
420 changed files with 901 additions and 14894 deletions

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scale with percent values - not supported</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scale">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="Percent values are not supported. The green rect in the test should not be scaled and the red rect should remain completely covered.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="148" fill="red"/>
<rect width="150" height="150" fill="green" transform="scale(50%)"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleX 0.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scalex">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The red rect in this test should be horizontally scaled down 0.5 to be hidden behind the green rect.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="298" height="148" fill="red" transform="scaleX(0.5)"/>
<rect width="150" height="150" fill="green"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleX 1.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scalex">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The green rect in this test should be horizontally scaled up 1.5 to completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="148" fill="red"/>
<rect width="100" height="150" fill="green" transform="scaleX(1.5)"/>
</svg>
</body>
</html>

View file

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleX with percent argument - not supported</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scalex">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The scaleX transform function does not support percentage values. The green rect in this test should not be scaled so the red background is not visible.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: red;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect width="200" height="200" fill="green" transform="scaleX(50%)"/>
</svg>
</body>
</html>

View file

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleX -0.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scalex">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="Scaling by a negative value should flip the element. The green rect in this test should be flipped rightward into view and scaled horizontally down 0.5 to completely cover the red background.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: red;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="-400" y="0" width="400" height="200" fill="green" transform="scaleX(-0.5)"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleX -1.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scalex">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="Scaling by a negative value should flip the element. The green rect in this test should be flipped rightward into view and horizontally scaled up 1.5 to completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="148" fill="red"/>
<rect x="-100" y="0" width="100" height="150" fill="green" transform="scaleX(-1.5)"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleY 0.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scaley">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The red rect in this test should be vertically scaled down 0.5 to be completely hidden by the green rect.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="298" fill="red" transform="scaleY(0.5)"/>
<rect width="150" height="150" fill="green"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleY 1.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scaley">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The rect in the test should be vertically scaled up 1.5 to 150x150">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="148" fill="red"/>
<rect width="150" height="100" fill="green" transform="scaleY(1.5)"/>
</svg>
</body>
</html>

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleY with percent argument - not supported</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scaley">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The scaleY transform function does not support percentage values. The green rect in this test should not be scaled and should completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="1" y="1" width="148" height="148" fill="red"/>
<rect width="150" height="150" fill="green" transform="scaleY(50%)"/>
</svg>
</body>
</html>

View file

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and and scaleY -0.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scaley">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="Scaling by a negative value should flip the element. The green in this test should be flipped downward into view and vertically scaled down to completely cover the red background.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: red;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="0" y="-400" width="200" height="400" fill="green" transform="scaleY(-0.5)"/>
</svg>
</body>
</html>

View file

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute and scaleY -1.5</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-scaley">
<link rel="match" href="reference/svg-scale-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="Scaling by a negative value should flip the element. The green rect in this test should be flipped downward into view and vertically scaled up 1.5 to completely cover the red background.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
background: red;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<svg>
<rect x="0" y="-133.333" width="200" height="133.333" fill="green" transform="scaleY(-1.5)"/>
</svg>
</body>
</html>