Update web-platform-tests to revision 81962ac8802223d038b188b6f9cb88a0a9c5beee

This commit is contained in:
WPT Sync Bot 2018-05-18 22:02:29 -04:00
parent fe1a057bd1
commit 24183668c4
1960 changed files with 29853 additions and 10555 deletions

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-rl and text-orientation: sideways</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient under vertical-rl and text-orientation: sideways."/>
<style type="text/css">
.container {
writing-mode: vertical-rl;
text-orientation: sideways;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 50%, transparent 50%);
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 50%, transparent 50%);
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-lr and text-orientation: sideways</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient under vertical-lr and text-orientation: sideways."/>
<style type="text/css">
.container {
writing-mode: vertical-lr;
text-orientation: sideways;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 50%, transparent 50%);
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 50%, transparent 50%);
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-rl</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under vertical-rl."/>
<style type="text/css">
.container {
writing-mode: vertical-rl;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-lr</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under vertical-lr."/>
<style type="text/css">
.container {
writing-mode: vertical-lr;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: sideways-rl</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under sideways-rl."/>
<style type="text/css">
.container {
writing-mode: sideways-rl;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: sideways-lr</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under sideways-lr."/>
<style type="text/css">
.container {
writing-mode: sideways-lr;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the bottom. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the top. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-rl and text-orientation: sideways</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under vertical-rl and text-orientation: sideways."/>
<style type="text/css">
.container {
writing-mode: vertical-rl;
text-orientation: sideways;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: Test float with linear gradient under writing-mode: vertical-lr and text-orientation: sideways</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin"/>
<link rel="match" href="reference/shape-outside-linear-gradient-001-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that shape-outside respects a simple linear gradient with shape-margin under vertical-lr and text-orientation: sideways."/>
<style type="text/css">
.container {
writing-mode: vertical-lr;
text-orientation: sideways;
inline-size: 100px;
block-size: 200px;
background-color: red;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
#test {
color: green;
}
#float-left {
/* Note: In .container's writing-mode, "float: left" actually floats
us towards the top. */
float: left;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to bottom, green 50%, transparent 50%);
shape-outside: linear-gradient(to bottom, green 25%, transparent 25%);
shape-margin: 25%;
}
#float-right {
/* Note: In .container's writing-mode, "float: right" actually floats
us towards the bottom. */
float: right;
inline-size: 100px;
block-size: 200px;
background: linear-gradient(to top, green 50%, transparent 50%);
shape-outside: linear-gradient(to top, green 5%, transparent 5%);
shape-margin: 45%
}
</style>
</head>
<body>
<p>
The test passes if you see a green square. There should be no red.
</p>
<div id="test" class="container">
<div id="float-left"></div>
x x x x
</div>
<div id="test" class="container" style="direction: rtl;">
<div id="float-right"></div>
x x x x
</div>
</body>
</html>

View file

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: left float, url(png), real offset image + shape-margin (px)</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-margin-property"/>
<link rel="match" href="reference/shape-image-006-ref.html"/>
<meta name="flags" content="ahem"/>
<meta name="assert" content="This test verifies that content wraps around all the image pixels
+ the shape-margin when shape-outside is given a png file.
Additionally, the shape-outside: image element is offset from its
containing block."/>
<style type="text/css">
body {
margin: 0;
}
.container {
font: 50px/1 Ahem;
padding: 50px;
position: absolute;
top: 20px;
left: -40px;
}
#test {
width: 200px;
color: rgb(0,100,0);
}
#image {
float: left;
shape-outside: url("support/left-half-rectangle.png");
shape-margin: 10px;
}
.blue {
width: 2px;
height: 100px;
background-color: blue;
}
.left-line { left: 65px; }
.right-line { left: 125px; }
.failure {
left: 70px;
width: 50px;
height: 100px;
background-color: red;
z-index: -1;
}
.blue, .failure {
position: absolute;
top: 70px;
}
</style>
</head>
<body>
<p>
The test passes if the green rectangle on the right is completely between the two blue lines.
There should be no red.
</p>
<div id="test" class="container">
<img id="image" src="support/left-half-rectangle.png"/>
X<br/>X
</div>
<div class="blue left-line"></div>
<div class="blue right-line"></div>
<div class="failure"></div>
</body>
</html>