mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
f6b874b897
--HG-- extra : rebase_source : 1ca78ffb1c791fac5cb89b94baf5a9d819da16ff
29 lines
686 B
HTML
29 lines
686 B
HTML
<!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.parentNode.removeChild(toRemove);
|
|
document.documentElement.className = "";
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", boom, false);
|
|
</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>
|