Update web-platform-tests to revision 5df56b25e1cb81f81fe16c88be839f9fd538b41e

This commit is contained in:
WPT Sync Bot 2019-12-01 08:24:26 +00:00
parent 1dd6ad7063
commit f170d55d3e
152 changed files with 3527 additions and 85 deletions

View file

@ -2,10 +2,6 @@
transform: rotate(90deg);
}
.rotate-3-args {
transform: rotate(90deg,20px,20px);
}
.translateY {
transform: translateY(-100px);
}
@ -13,7 +9,3 @@
.invalid {
transform: scale(invalid);
}
.rotate-3-args {
transform: rotate(90deg,20px,20px);
}

View file

@ -1,34 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: External style of rotate with three arguments on SVG element with presentation attribute style on the same element</title>
<link rel="author" title="David Alcala" href="mailto:dalcala@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/#transform-attribute-specificity">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
<link rel="match" href="reference/svg-external-styles-ref.html">
<link rel="stylesheet" href="support/svg-external-styles.css">
<meta name="flags" content="svg">
<meta name="assert" content="Rotate with three arguments external style on SVG elements should override presentation attribute styles on the same element. The rect in the test should be rotated by 90 degrees clockwise after the transform origin is translated by 20 pixels in both the vertical and horizontal directions and not scaled.">
<style type="text/css">
svg {
height: 300px;
width: 300px;
}
</style>
</head>
<body>
<p>The test passes if there is a vertical green stripe to the left of a yellow vertical stripe. You should see no red.</p>
<svg>
<!-- Fill with Gradient to avoid false positive. -->
<defs>
<linearGradient id="grad" x2="0%" y2="100%">
<stop offset="50%" stop-color="yellow"/>
<stop offset="50%" stop-color="green"/>
</linearGradient>
</defs>
<rect x="1" y="1" width="98" height="98" fill="red"/>
<rect class="rotate-3-args" y="-60" width="100" height="100" fill="url(#grad)" transform="scale(0.5)"/>
</svg>
</body>
</html>