Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/syntax/ident-017.xht - WPT Dashboard Interop Dashboard
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Attribute selection with digits</title>
<link rel="match" href="../reference/no-red-filler-text-ref.xht"/>
<meta name="flags" content="invalid" />
<meta name="assert" content="Attribute selectors cannot begin with digits." />
<style type="text/css">
[1digit="true"], div
{
color: red;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>
<div>Filler Text</div>
</body>
</html>