mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
417 B
HTML
16 lines
417 B
HTML
<!--quirks mode test-->
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<img id="img1" src="about:blank">
|
|
<img id="img2" src="about:blank" alt="alt2">
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("img1").setAttribute("alt", "alt1");
|
|
document.getElementById("img2").removeAttribute("alt");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("load", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|