Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!DOCTYPE html>
<style>
p { color: red; }
p:lang(zh) { color: green; }
div:lang(zh) + p { color: green; }
</style>
<body onload="document.querySelector('div').lang = 'zh'">
<div lang="en">
<div>
<p>This text should be green.</p>
</div>
</div>
<p>This text should be green.</p>