Update web-platform-tests to revision bc60e6f82132cfc9a5b688c566c7772024b3c15c

This commit is contained in:
WPT Sync Bot 2019-07-26 10:25:50 +00:00
parent 449881f566
commit 29156ca9e2
223 changed files with 7517 additions and 2093 deletions

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test reference</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
white-space: normal;
}
#test { color: blue; }
#ref { color: orange; }
</style>
<p>Test passes if the blue and orange lines of text are identical.
<div class=v-rl>
<div id=test><span>12</span><span>34</span><span>5&nbsp;6</span>えお</div>
<div id=ref><span>12</span><span>34</span><span>5&nbsp;6</span>えお</div>
</div>

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test Reference</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
white-space: pre;
}
#test { color: blue; }
#ref { color: orange; }
</style>
<p>Test passes if the blue and orange lines of text are identical.
<div class=v-rl>
<div id=test><span>&nbsp;&nbsp;12</span><span>34&nbsp;&nbsp;</span><span>5&nbsp;&nbsp;&nbsp;&nbsp;6</span>えお</div>
<div id=ref><span>&nbsp;&nbsp;12</span><span>34&nbsp;&nbsp;</span><span>5&nbsp;&nbsp;&nbsp;&nbsp;6</span>えお</div>
</div>

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test Reference</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
span {
display: inline-block;
height: 1em;
}
#test { color: blue; }
#test2 { color: brown; }
#ref { color: orange; }
.v-rl > div {
display: inline-block;
border: solid;
margin: 0 5px;
}
</style>
<p>Test passes if the blue, orange, brown boxes are identical.
<div class=v-rl>
<div id=test>あいう<span></span>えお<span></span></div>
<br>
<div id=test2>あいう<span></span>えお<span></span></div>
<br>
<div id=ref>あいう<span></span>えお<span></span></div>
</div>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Writing Modes Test: white-space:normal space processing in text-combine-horizontal</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-4/#text-combine-layout">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
<link rel="match" href="reference/tcy-white-space-processing-001-ref.html">
<meta name="assert" content="Spaces with white-space:normal in a text-combine horizontal is trimmed at the start and end, and collapsed in the middle.">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
white-space: normal;
}
#test { color: blue; }
#ref { color: orange; }
</style>
<p>Test passes if the blue and orange lines of text are identical.
<div class=v-rl>
<div id=test><span> 12</span><span>34 </span><span>5 6</span>えお</div>
<div id=ref><span>12</span><span>34</span><span>5&nbsp;6</span>えお</div>
</div>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Writing Modes Test: white-space:pre space processing in text-combine-horizontal</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-4/#text-combine-layout">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
<link rel="match" href="reference/tcy-white-space-processing-002-ref.html">
<meta name="assert" content="Spaces with white-space:pre in a text-combine-upright are preserved">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
white-space: pre;
}
#test { color: blue; }
#ref { color: orange; }
</style>
<p>Test passes if the blue and orange lines of text are identical.
<div class=v-rl>
<div id=test><span> 12</span><span>34 </span><span>5 6</span>えお</div>
<div id=ref><span>&nbsp;&nbsp;12</span><span>34&nbsp;&nbsp;</span><span>5&nbsp;&nbsp;&nbsp;&nbsp;6</span>えお</div>
</div>

View file

@ -0,0 +1,44 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Writing Modes Test: white space only text-combine-horizontal</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-4/#text-combine-layout">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-rules">
<link rel="match" href="reference/tcy-white-space-processing-003-ref.html">
<meta name="assert" content="a text-combine-upright with only white-space is preserved as a 1em square, including at the end of the containing line, regardless of the value of the white-space property">
<style>
.v-rl {
writing-mode: vertical-rl;
width: 200px;
}
#test span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
}
#test2 span {
-webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/
text-combine-upright: all;
white-space: pre;
}
#ref span {
display: inline-block;
height: 1em;
}
#test { color: blue; }
#test2 { color: brown; }
#ref { color: orange; }
.v-rl > div {
display: inline-block;
border: solid;
margin: 0 5px;
}
</style>
<p>Test passes if the blue, orange, brown boxes are identical.
<div class=v-rl>
<div id=test>あいう<span> </span>えお<span> </span></div>
<br>
<div id=test2>あいう<span> </span>えお<span> </span></div>
<br>
<div id=ref>あいう<span></span>えお<span></span></div>
</div>