Bug 1245681 - Test addOverrideStyleSheet (r=bz)

CLOSED TREE

--HG--
extra : commitid : 2BpXUK0hMku
extra : amend_source : eacfa3fc5956e848dd9f75f5408f110eb02a6cb2
This commit is contained in:
Christoph Kerschbaumer 2016-02-05 15:28:18 -08:00
Родитель 83138fba54
Коммит 687df9b9e3
2 изменённых файлов: 69 добавлений и 0 удалений

Просмотреть файл

@ -167,3 +167,5 @@ skip-if = toolkit == 'android'
[test_bug1181130-1.html]
[test_bug1181130-2.html]
[test_backspace_vs.html]
[test_css_chrome_load_access.html]
skip-if = toolkit == 'android' # chrome urls not available due to packaging

Просмотреть файл

@ -0,0 +1,67 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1245681
-->
<head>
<title>Test for Bug 1245681</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=1245681">Mozilla Bug 1245681</a>
<p id="display"></p>
<div id="content">
<iframe></iframe>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
const Ci = SpecialPowers.Ci;
var styleSheets = null;
function runTest() {
var editframe = window.frames[0];
var editdoc = editframe.document;
editdoc.designMode = 'on';
var editor = SpecialPowers.wrap(editframe)
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIEditingSession)
.getEditorForWindow(editframe);
styleSheets = editor.QueryInterface(Ci.nsIEditorStyleSheets);
// test 1: try to access chrome:// url that is accessible to content
try
{
styleSheets.addOverrideStyleSheet("chrome://browser/content/pageinfo/pageInfo.css");
ok(true, "should be allowed to access chrome://*.css if contentaccessible");
}
catch (ex) {
ok(false, "should be allowed to access chrome://*.css if contentaccessible");
}
// test 2: try to access chrome:// url that is *not* accessible to content
// please note that addOverrideStyleSheet() is triggered by the system,
// so the load should also *always* succeed.
try
{
styleSheets.addOverrideStyleSheet("chrome://mozapps/skin/aboutNetworking.css");
ok(true, "should be allowed to access chrome://*.css even if *not* contentaccessible");
}
catch (ex) {
ok(false, "should be allowed to access chrome://*.css even if *not* contentaccessible");
}
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);
</script>
</pre>
</body>
</html>