mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
17 lines
No EOL
677 B
HTML
17 lines
No EOL
677 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
|
<title>CSS Test: Parsing check for * ~ :root error handling</title>
|
|
<link href="http://www.microsoft.com/" rel="author" title="Microsoft" />
|
|
<link href="https://drafts.csswg.org/selectors-3/#selector-syntax" rel="help" />
|
|
<link href="reference/ref-this-text-should-be-green.xht" rel="match" />
|
|
<meta content="* ~ :root should not match anything" name="assert" />
|
|
<style>
|
|
* ~ :root p {
|
|
color: red;
|
|
}
|
|
p {
|
|
color: green;
|
|
}
|
|
</style>
|
|
</head><body><p>This text should be green.</p>
|
|
</body></html> |