mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 01:08:39 +09:00
17 lines
296 B
HTML
17 lines
296 B
HTML
<html>
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function init()
|
|
{
|
|
var y = document.getElementById("tt");
|
|
var z = y.firstChild;
|
|
y.removeChild(z);
|
|
z.text;
|
|
}
|
|
|
|
window.addEventListener("load", init, false);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="tt"><a href="http://www.mozilla.org">Foo</a></div>
|
|
|
|
</body>
|
|
</html>
|