mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
15 lines
268 B
HTML
15 lines
268 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="application/javascript">
|
|
function makeEvent() {
|
|
var evt = new Event("MouseEvents");
|
|
evt.expando = 42;
|
|
is(evt.expando, 42, "Expando properly visible in iframe");
|
|
return evt;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|