mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-29 05:29:11 +00:00
20 lines
421 B
HTML
20 lines
421 B
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>doc_markup_events-overflow.html</title>
|
|
</head>
|
|
<body>
|
|
<h1>doc_markup_events-overflow.html</h1>
|
|
<span id="events">Inspect me!</span>
|
|
<script>
|
|
"use strict";
|
|
var el = document.getElementById("events");
|
|
for (var i = 50; i > 0; i--) {
|
|
el.addEventListener("click", function onClick() {
|
|
alert("click");
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|