Skip to content

Commit

Permalink
Add Symbol.unscopables lexical scope test of compiled event handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss committed Mar 14, 2021
1 parent 60cbac1 commit 4b2a5d2
Showing 1 changed file with 92 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<!DOCTYPE html>
<meta charset="UTF-8" />
<title>Inline event handler scopes exclude unscopable properties</title>
<link rel="author" title="ExE Boss" href="https://ExE-Boss.tech" />
<link rel="help" href="https://html.spec.whatwg.org/multipage/webappapis.html#getting-the-current-value-of-the-event-handler" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
"use strict";

// (document[Symbol.unscopables] ||= {}).testVariable = true;
let documentUnscopables = document[Symbol.unscopables];
if (!documentUnscopables) {
documentUnscopables = {};
document[Symbol.unscopables] = documentUnscopables;
}

documentUnscopables.testVariable = true;
document.testVariable = "FAIL";
window.testVariable = {};
</script>

<!-- test case 1: element, document, and window -->
<div id="test1_target" onclick='
"use strict";
window.testResults.testVariable = testVariable;
'></div>

<script>
"use strict";

test(() => {
const results = window.testResults = {};

document.getElementById("test1_target").click();
assert_equals(results.testVariable, window.testVariable);
}, "unscopable `document.testVariable` doesn't shadow `window.testVariable`");

test(() => {
const results = window.testResults = {};
const element = document.getElementById("test1_target");

// (element[Symbol.unscopables] ||= {}).testVariable = true;
let elementUnscopables = element[Symbol.unscopables];
if (!elementUnscopables) {
elementUnscopables = {};
element[Symbol.unscopables] = elementUnscopables;
}

elementUnscopables.testVariable = true;
element.testVariable = "FAIL (element)";

element.click();
assert_equals(results.testVariable, window.testVariable);
}, "unscopable `element.testVariable` doesn't shadow `window.testVariable`");
</script>

<!-- test case 2: element, form owner, document, and window -->
<form id="test2_form_owner" onsubmit="return false;">
<!-- <button> is a form-associated element and has a form owner.
https://html.spec.whatwg.org/C/#form-associated-element -->
<button id="test2_target" onclick='
"use strict";
window.testResults.testVariable = testVariable;
'></button>
</form>

<script>
"use strict";

test(() => {
const results = window.testResults = {};
const element = document.getElementById("test2_target");
const formOwner = document.getElementById("test2_form_owner");

// (formOwner[Symbol.unscopables] ||= {}).testVariable = true;
let formOwnerUnscopables = formOwner[Symbol.unscopables];
if (!formOwnerUnscopables) {
formOwnerUnscopables = {};
formOwner[Symbol.unscopables] = formOwnerUnscopables;
}

formOwnerUnscopables.testVariable = true;
formOwner.testVariable = "FAIL (formOwner)";

element.click();
assert_equals(results.testVariable, window.testVariable);
}, "unscopable `formOwner.testVariable` doesn't shadow `window.testVariable`")
</script>

0 comments on commit 4b2a5d2

Please sign in to comment.