Update web-platform-tests to revision b'ee6da9d71d0268d7fdb04e8e5b26858f46ee0cc4'

This commit is contained in:
WPT Sync Bot 2022-01-20 04:38:55 +00:00 committed by cybai
parent 4401622eb1
commit b77ad115f6
16832 changed files with 270819 additions and 87621 deletions

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
<link rel="match" href="reference/svg-rotate-3args-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The rotate transform function takes two optional translation values. If one of the translation values is not provided, then both translation-value parameters fall back to zero. The green rect in this test should be rotated by 90 degrees clockwise but the transform origin should not be translated. The green rect should completely cover the red rect.">
<meta name="assert" content="The rotate transform function takes two optional translation values. If one of the translation values is not provided, then the entire argument list is invalid and therefore no transform is applied. The green rect in this test should not be rotated. The green rect should completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
@ -19,7 +19,7 @@
<p>The test passes if there is a green square and no red.</p>
<svg>
<rect x="1" y="1" width="78" height="78" fill="red"/>
<rect x="0" y="-80" width="80" height="80" fill="green" transform="rotate(90deg 20px)"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90 20)"/>
</svg>
</body>
</html>
</html>

View file

@ -19,7 +19,7 @@
<p>The test passes if there is a green square and no red.</p>
<svg>
<rect x="1" y="1" width="78" height="78" fill="red"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90deg,)"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90,)"/>
</svg>
</body>
</html>
</html>

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
<link rel="match" href="reference/svg-rotate-3args-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The rotate transform function takes two optional translation values. If a third absolute translation-value argument is provided, then all translation-value parameters fall back to zero. The green rect in this test should be rotated by 90 degrees clockwise, but the transform origin should not be translated. The green rect should completely cover the red rect.">
<meta name="assert" content="The rotate transform function takes two optional translation values. If a third absolute translation-value argument is provided, then the entire argument list is invalid and therefore no transform is applied. The green rect in this test should not be rotated. The green rect should completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
@ -19,7 +19,7 @@
<p>The test passes if there is a green square and no red.</p>
<svg>
<rect x="1" y="1" width="78" height="78" fill="red"/>
<rect x="0" y="-80" width="80" height="80" fill="green" transform="rotate(90deg,20px,20px,20px)"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90,20,20,20)"/>
</svg>
</body>
</html>
</html>

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
<link rel="match" href="reference/svg-rotate-3args-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The rotate transform function takes two optional translation values. If one of the translation values is not provided, then both translation-value parameters fall back to zero. The green rect in this test should be rotated by 90 degrees clockwise but the transform origin should not be translated. The green rect should completely cover the red rect.">
<meta name="assert" content="The rotate transform function takes two optional translation values. If one of the translation values is not provided, then the entire argument list is invalid and therefore no transform is applied. The green rect in this test should not be rotated. The green rect should completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
@ -19,7 +19,7 @@
<p>The test passes if there is a green square and no red.</p>
<svg>
<rect x="1" y="1" width="78" height="78" fill="red"/>
<rect x="0" y="-80" width="80" height="80" fill="green" transform="rotate(90deg 30%)"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90 30%)"/>
</svg>
</body>
</html>
</html>

View file

@ -7,7 +7,7 @@
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
<link rel="match" href="reference/svg-rotate-3args-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The rotate transform function takes two optional translation values. If a third relative translation-value argument is provided, then all translation-value parameters fall back to zero. The green rect in this test should be rotated by 90 degrees clockwise, but the transform origin should not be translated. The green rect should completely cover the red rect.">
<meta name="assert" content="The rotate transform function takes two optional translation values. If a third relative translation-value argument is provided, then the entire argument list is invalid and therefore no transform is applied. The green rect in this test should not be rotated. The green rect should completely cover the red rect.">
<style type="text/css">
svg {
width: 200px;
@ -19,7 +19,7 @@
<p>The test passes if there is a green square and no red.</p>
<svg>
<rect x="1" y="1" width="78" height="78" fill="red"/>
<rect x="0" y="-80" width="80" height="80" fill="green" transform="rotate(90deg,30%,20%,40%)"/>
<rect x="0" y="0" width="80" height="80" fill="green" transform="rotate(90,30%,20%,40%)"/>
</svg>
</body>
</html>
</html>