summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2023-03-09 13:09:40 +0900
committerGitHub <noreply@github.com>2023-03-09 04:09:40 +0000
commit521cb4ca9b9b02f7ba3150338d5f3c4b035aab8d (patch)
treee46e4efc49d1dc0ece4917e65f006a6e9a8daffd /ext
parent4e8edafb398f52499f9e975ffb8765cdbd268f34 (diff)
fix(rumtime): Add `Deno.` prefix for registered symbols (#18086)
Diffstat (limited to 'ext')
-rw-r--r--ext/web/02_event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/02_event.js b/ext/web/02_event.js
index dd8b4f57b..f354bf182 100644
--- a/ext/web/02_event.js
+++ b/ext/web/02_event.js
@@ -1062,7 +1062,7 @@ class EventTarget {
// This prevents the recursive dispatches of unload events.
// See https://github.com/denoland/deno/issues/9201.
if (event.type === "unload" && self === globalThis_) {
- globalThis_[SymbolFor("isUnloadDispatched")] = true;
+ globalThis_[SymbolFor("Deno.isUnloadDispatched")] = true;
}
const { listeners } = self[eventTargetData];