Update web-platform-tests to revision d047c507f134899be6f0bde7a48c630ab67fe34a

This commit is contained in:
WPT Sync Bot 2020-07-25 08:21:59 +00:00
parent 49885648e7
commit c6de66cc49
85 changed files with 697 additions and 264 deletions

View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
div
{
background-color: yellow;
color: green;
float: left;
font-size: 48px;
margin-left: 16px;
}
div.vrl
{
writing-mode: vertical-rl;
}
div.vlr
{
writing-mode: vertical-lr;
}
div.mixed
{
text-orientation: mixed;
}
div.sideways
{
text-orientation: sideways;
}
div.upright
{
text-orientation: upright;
}
</style>
<p>Test passes if each glyph of the 6 "Selected Text" is green and if there is <strong>no red</strong>.
<div class="vrl mixed">Selected Text</div>
<div class="vrl sideways">Selected Text</div>
<div class="vrl upright">Selected Text</div>
<div class="vlr mixed">Selected Text</div>
<div class="vlr sideways">Selected Text</div>
<div class="vlr upright">Selected Text</div>