summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug1499169.html
blob: 7d5141797d4ac208daa05bda78cb262650330dac (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
<!DOCTYPE HTML>
<html>
  <!--
       https://bugzilla.mozilla.org/show_bug.cgi?id=1499139
  -->
  <head>
    <meta charset="utf-8">
    <title>Test for Bug 1499169</title>
    <script src="/tests/SimpleTest/SimpleTest.js"></script>
    <script src="/tests/SimpleTest/SpecialPowers.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    <script type="application/javascript">
     SimpleTest.waitForExplicitFinish();

     function test() {
       const OBJLC = SpecialPowers.Ci.nsIObjectLoadingContent;
       let obj = document.getElementById("pdftest");

       obj instanceof OBJLC;
       obj = SpecialPowers.wrap(obj);

       // Make sure we've set our type correctly even though the mime type isn't quite as expected.
       ok(obj.displayedType == OBJLC.TYPE_DOCUMENT, "expected document type");
       SimpleTest.finish();
     }
    </script>
  </head>
  <body>
    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1499169">Mozilla Bug 1499169</a>
    <object id="pdftest" onload="test()" data="file_pdfjs_test.pdf" type="application/pdf;charset=UTF-8" width="90%" height="600"></object>
  </body>
</html>