1 |
<!DOCTYPE html> |
2 |
<html lang="en"> |
3 |
<head> |
4 |
<title>window.external</title> |
5 |
<script src="../../../support/result0.js"></script> |
6 |
</head> |
7 |
<body> |
8 |
<p><code>window.external</code> has: <ul> |
9 |
<script type="text/javascript"> |
10 |
for (var p in window.external) { |
11 |
document.write ('<li><code>'); |
12 |
document.write (htescape (p)); |
13 |
document.write ('</code>: '); |
14 |
try { |
15 |
writeResult (window.external[p]); |
16 |
} catch (e) { |
17 |
document.write ('(error '); |
18 |
writeResult (e); |
19 |
document.write (')'); |
20 |
} |
21 |
document.write ('</li>'); |
22 |
} |
23 |
</script></ul> |
24 |
</body> |
25 |
</html> |