mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
29 lines
640 B
HTML
29 lines
640 B
HTML
<!-- intentionally omiting doctype because this test requires document.all -->
|
|
<html>
|
|
<head>
|
|
<title>Test for non-DOM module exceptions</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript;version=1.7">
|
|
"use strict";
|
|
|
|
try {
|
|
document.all();
|
|
} catch (e) {
|
|
is(typeof e, "object");
|
|
is(e.filename, location);
|
|
is(e.lineNumber, 18);
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|