mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
63 lines
1.1 KiB
HTML
63 lines
1.1 KiB
HTML
<!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
|
|
{
|
|
color: green;
|
|
float: left;
|
|
font-size: 32px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
div.vrl
|
|
{
|
|
writing-mode: vertical-rl;
|
|
}
|
|
|
|
div.vlr
|
|
{
|
|
writing-mode: vertical-lr;
|
|
}
|
|
|
|
div.mixed
|
|
{
|
|
background-color: yellow;
|
|
text-orientation: mixed;
|
|
}
|
|
|
|
div.sideways
|
|
{
|
|
background-color: yellow;
|
|
text-orientation: sideways;
|
|
}
|
|
|
|
div.upright
|
|
{
|
|
text-orientation: upright;
|
|
}
|
|
|
|
div.upright > span
|
|
{
|
|
background-color: yellow;
|
|
}
|
|
</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"><span>Selected Text</span></div>
|
|
|
|
<div class="vlr mixed">Selected Text</div>
|
|
|
|
<div class="vlr sideways">Selected Text</div>
|
|
|
|
<div class="vlr upright"><span>Selected Text</span></div>
|