mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
23 lines
939 B
HTML
23 lines
939 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Selectors :lang pseudo-class</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#lang">
|
|
<link rel="match" href="reference/lang-selector-001-ref.htm">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="The :lang pseudo-class selector matches any element with a matching lang attribute.">
|
|
<style type="text/css">
|
|
p:lang(en)
|
|
{
|
|
color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if only the first line of "Filler Text" below is green.</p>
|
|
<p lang="en-us">Filler Text</p>
|
|
<p>Filler Text</p>
|
|
<div lang="en-us">Filler Text</div>
|
|
</body>
|
|
</html> |