blob: e37db5b8b2019335383518a3b8606e51cab8dbfa [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../../resources/js-test.js"></script>
<iframe id="childFrame" src="./resources/shadow-tree-listener-clearance-frame.html"></iframe>
<script>
var child = document.getElementById("childFrame");
var firedCount = 0;
function getChildTarget()
{
return child.contentDocument.targetInShadow;
}
function test()
{
var toBeListened = getChildTarget();
toBeListened.addEventListener("test", function(event) { firedCount++; });
toBeListened.dispatchEvent(new CustomEvent("test"));
shouldBe("firedCount", "1");
window.child.contentDocument.open(); // This should clear event listeners
toBeListened.dispatchEvent(new CustomEvent("test"));
shouldBe("firedCount", "1");
window.child.contentDocument.close();
finishJSTest();
}
jsTestIsAsync = true;
child.addEventListener("load", test);
</script>
</body>
</html>