mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
684 B
HTML
29 lines
684 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="image">
|
||
|
<input type="image">
|
||
|
</span>
|
||
|
<input type="submit" name="foo" value="foo">
|
||
|
<input type="image" name="bar" value="bar">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|