blob: ef91f76550fb6970940aef824b7faf25503e4368 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=815847
-->
<window title="Mozilla Bug 815847"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
<body xmlns="http://www.w3.org/1999/xhtml">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1214174">Mozilla Bug 1214174</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
<script class="testbody" type="application/javascript">
<![CDATA[
var Cu = Components.utils;
var Ci = Components.interfaces;
Cu.import('resource://gre/modules/Services.jsm');
function testWindowlessBrowser(chromePrivileged) {
var webNav = Services.appShell.createWindowlessBrowser(chromePrivileged);
ok(webNav, "createWindowlessBrowser should return a wevNav");
let interfaceRequestor = webNav.QueryInterface(Ci.nsIInterfaceRequestor);
let docShell = interfaceRequestor.getInterface(Ci.nsIDocShell);
ok(docShell, "docShell should be defined");
ok(docShell.contentViewer.DOMDocument.defaultView, "docShell defaultView should be defined");
var win = docShell.contentViewer.DOMDocument.defaultView;
ok(win.screenX == 0, "window.screenX should be 0 in a windowless browser");
ok(win.screenY == 0, "window.screenY should be 0 in a windowless browser");
ok(win.outerWidth == 0, "window.outerWidth should be 0 in a windowless browser");
ok(win.outerHeight == 0, "window.outerHeight should be 0 in a windowless browser");
ok(win.sidebar, "window.sidebar should be defined");
ok(win.external, "window.external should be defined");
var exception;
try {
win.external.AddSearchProvider("http://test-fake.url");
} catch(e) {
exception = e;
}
ok(!exception, "window.external.AddSearchProvider should be ignore withour raising an exception");
webNav.close();
}
info("Test Bug 1214174 on a content privileged windowless browser");
testWindowlessBrowser(false);
info("Test Bug 1214174 on a chrome privileged windowless browser");
testWindowlessBrowser(true);
]]>
</script>
</window>
|