Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!DOCTYPE html>
<html>
<head>
<style>
span { color: red; }
[style*=red] + * { color: green; }
</style>
</head>
<body onload="document.getElementById('x').style.color = 'red'">
<span id="x" style="color: blue"></span><span>This should be green</span>
</body>
</html>