mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
21 lines
255 B
HTML
21 lines
255 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
|
||
|
|
function f() {
|
||
|
|
for (var j in { a:1, b:2, c:3, d:4, e:5 }) {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
f();
|
||
|
|
Function.prototype.__defineGetter__("xxx", function(){});
|
||
|
|
}
|
||
|
|
|
||
|
|
</script></head>
|
||
|
|
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|