mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
27 lines
544 B
HTML
27 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span { color: green }
|
|
:default + span { color: red }
|
|
span.reverse { color: red }
|
|
:default + span.reverse { color: green }
|
|
input { display: none }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<div>
|
|
<input type="submit" checked="checked" id="foo"><span>There should be no red.</span>
|
|
</div>
|
|
<div>
|
|
<input type="submit"><span class="reverse">There should be no red.</span>
|
|
</div>
|
|
</form>
|
|
<script>
|
|
var foo = document.body.offsetWidth;
|
|
document.getElementById("foo").removeAttribute("type");
|
|
</script>
|
|
</body>
|
|
</html>
|