forked from mirrors/gecko-dev
Depends on D21215 Differential Revision: https://phabricator.services.mozilla.com/D14130 --HG-- extra : moz-landing-system : lando
18 lines
397 B
HTML
18 lines
397 B
HTML
<html>
|
|
<body>
|
|
|
|
<div id='name'></div>
|
|
|
|
<script>
|
|
if (location.search == "?1") {
|
|
open("http://example.com/tests/dom/browser-element/mochitest/file_browserElement_OpenWindowDifferentOrigin.html?2");
|
|
} else if (location.search == "?2") {
|
|
alert("finish");
|
|
}
|
|
|
|
// eslint-disable-next-line no-unsanitized/property
|
|
document.getElementById("name").innerHTML = location.search;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|