tenfourfox/layout/reftests/bugs/534526-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

13 lines
298 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
span { color: green; }
[style*=red] + * { color: red; }
</style>
</head>
<body onload="document.getElementById('x').style.color = 'blue'">
<span id="x" style="color: red"></span><span>This should be green</span>
</body>
</html>