fune/dom/tests/browser/file_bug1685807.html
Tim Huang 2d5079d66c Bug 1685807 - Part 2: Add tests including a mochitest and a web platform test. r=smaug
This patch adds two tests, one for the mochitest and another for WPT.
Both tests will test the case of loading the about:blank page. And
mochitest tests the case of setting document.domain additionally.

The WPT framework won't support testing the document.domain case, so
there is no such test in the WPT.

Differential Revision: https://phabricator.services.mozilla.com/D101360
2021-01-15 18:57:28 +00:00

12 lines
157 B
HTML

<html>
<head>
</head>
<body>
<script>
window.onload = () => {
opener.location.href = "about:blank";
window.close();
};
</script>
</body>
</html>