Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<style>
span { color: red }
:default + span { color: green }
span.reverse { color: green }
:default + span.reverse { color: red }
input { display: none }
</style>
</head>
<body onload="var foo = document.getElementById('foo');
var bar = document.createElement('input');
bar.type = 'image';
foo.appendChild(bar)">
<form id="foo">
<input type="image"><span>This should be green</span>
</form>
</body>
</html>