forked from mirrors/gecko-dev
Depends on D21215 Differential Revision: https://phabricator.services.mozilla.com/D14130 --HG-- extra : moz-landing-system : lando
6 lines
253 B
HTML
6 lines
253 B
HTML
<script>
|
|
function testSucceeded() { alert("success"); }
|
|
// eslint-disable-next-line no-useless-concat
|
|
function callback() { return "<script>opener.testSucceeded()</" + "script>"; }
|
|
var w = window.open("javascript:opener.callback();");
|
|
</script>
|