mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
17 lines
No EOL
536 B
HTML
17 lines
No EOL
536 B
HTML
<!DOCTYPE html>
|
|
<html><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.htm" 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> |