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>