mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
26 lines
543 B
HTML
26 lines
543 B
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
|
|
{
|
|
background-color: yellow;
|
|
color: green;
|
|
display: inline;
|
|
font-size: 300%;
|
|
}
|
|
|
|
span
|
|
{
|
|
color: purple;
|
|
}
|
|
</style>
|
|
|
|
<p>Test passes if background color of "Selected Text" is yellow, if the "S" glyph is purple and if the other glyphs are green.
|
|
|
|
<div><span>S</span>elected Text</div>
|