mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
14 lines
323 B
HTML
14 lines
323 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script type='text/javascript'>
|
|
function changeAltText(img)
|
|
{
|
|
img.alt = img.alt + ". I'M INVISIBLE!";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="changeAltText(document.images[0])">
|
|
<img src='data:text/plain,' alt="initial">
|
|
</body>
|
|
</html>
|