Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
input { color: purple; }
:default { font-size: 3em; color: green; }
</style>
<script type="text/javascript">
function boom()
{
var toRemove = document.getElementById("toremove");
toRemove.remove();
document.documentElement.className = "";
}
window.addEventListener("MozReftestInvalidate", boom);
</script>
</head>
<body>
<form>
<span id="toremove">
<input type="submit">
<input type="submit">
</span>
<input type="image" name="bar" value="bar">
<input type="submit" name="foo" value="foo">
</form>
</body>
</html>