mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
25 lines
978 B
HTML
25 lines
978 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Lang selector and document language set via server's content-language</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#lang">
|
|
<meta name="flags" content="http">
|
|
<meta name="assert" content="Lang attribute is selectable when specified by HTTP header.">
|
|
<style type="text/css">
|
|
#prerequisite:lang(fr)
|
|
{
|
|
display: none;
|
|
}
|
|
div:lang(fr)
|
|
{
|
|
color: green
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p id="prerequisite">PREREQUISITE: Set the page "content-language" header to "fr" (French).</p>
|
|
<p>Test passes if the "Filler Text" below is green.</p>
|
|
<div>Filler Text</div>
|
|
</body>
|
|
</html> |