blob: 025468a0e043b7852443b05685e4c67428eda91a [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
function handleIntersect(entries, observer)
{
}
onunload = () => {
if (!window.IntersectionObserver)
return;
observer = new IntersectionObserver(handleIntersect);
observer.observe(document.body);
};
onload = () => {
opener.popupDocumentWasCreated(document);
close();
};
</script>
</body>
</html>