servo/tests/wpt/css-tests/selectors-3_dev/xhtml1/root-siblings.xht

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>