bzbarsky%mit.edu edbd43fcf9 Adding tests that make sure bug 352980 doesn't regress anything.
git-svn-id: svn://10.0.0.236/trunk@230970 18797224-902f-48f8-a5cc-f745e15eee43
2007-07-25 21:47:22 +00: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>