forked from mirrors/gecko-dev
MozReview-Commit-ID: 5fVG7akPnGM --HG-- extra : rebase_source : e462e84bf8f2ffd893d1fd6b5ea14bbc093168dd
14 lines
345 B
HTML
14 lines
345 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
This page is opened in a new window by test_dialog_arguments. It is
|
|
a dialog which expects a Symbol to be passed in the dialog arguments.
|
|
Once we load, we call back into the opener with the argument we were
|
|
passed.
|
|
-->
|
|
<head>
|
|
<body>Opened!</body>
|
|
<script>
|
|
window.opener.done(window.arguments[0]);
|
|
</script>
|
|
</html>
|