servo/tests/ref/root_pseudo_a.html
2014-09-08 20:21:42 -06:00

15 lines
403 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>:root test</title>
<style type="text/css">
html:root { background: green; }
html { background: red; }
p:root { background: red; }
</style>
</head>
<body>
The background of the page should be green and you should see not red at all.
<p>And the background of this sentence should be green too.</p>
</body>
</html>