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

19 lines
350 B
HTML

<!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>
<form>
<input type="submit"><span>This should be green</span>
<input type="image">
</form>
</body>
</html>