blob: 2281cdaf3c08806b89f6a1fa8989cc8980a1aac7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test-pre.js"></script>
<script>
description("Tests that Element.slot is [Unscopable].");
with (document.body) {
try {
slot;
testFailed("Element.body is not [Unscopable]");
} catch(e) {
exception = e;
shouldBeEqualToString("exception.name", "ReferenceError");
}
}
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>