blob: 99161372b70cd43db34a2878a43b02aa1dab2a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<script>
function runTest() {
var o = { };
showModalDialog("data:text/html,<scr" + "ipt>dialogArguments['result'] = 'PASS'; window.close() </scr" + "ipt>", o);
if (o.result == 'PASS')
document.getElementById('result').innerHTML = 'SUCCESS';
}
</script>
<body>
<div>
This tests that modal dialog arguments get passed around correctly. Click the button below to test. The text "SUCCESS" will be shown below if the test was successful.
</div>
<button onclick="runTest()">Click Me!</button>
<div id="result">
</div>
</html>
|