summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/mochitest/test_bug393269.html
blob: 048698854eeff30058e8d7c09bbd974bd3cc7ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=393269
-->
<head>
  <title>Test for Bug 393269</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=393269">Mozilla Bug 393269</a>
<iframe id="ifr"></iframe>
<pre id="test">
<script class="testbody" type="text/javascript">

(function () {
    /** Test for Bug 393269 **/
    var doc = $("ifr").contentDocument;
    is("UTF-8", doc.characterSet, "control, getting a property");
    doc.open();
    try {
        is("UTF-8", doc.characterSet,
           "can get a property after 1 document.open")
    } catch (e) {
        fail("Shouldn't have thrown: " + e);
        return;
    } finally {
        doc.close();
    }

    doc.open();
    try {
        is("UTF-8", doc.characterSet,
           "can get a property after 2 document.opens")
    } catch (e) {
        fail("Shouldn't have thrown: " + e);
    } finally {
        doc.close();
    }
})();
</script>
</pre>
</body>
</html>