зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1245681 - Test for addOverrideStyleSheet. r=bz
--HG-- extra : rebase_source : 9faca0d0dde018504f284df8c8a5010976988fa8
This commit is contained in:
Родитель
933878145c
Коммит
197da838c4
|
@ -167,3 +167,4 @@ skip-if = toolkit == 'android'
|
|||
[test_bug1181130-1.html]
|
||||
[test_bug1181130-2.html]
|
||||
[test_backspace_vs.html]
|
||||
[test_css_chrome_load_access.html]
|
||||
|
|
|
@ -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>
|
Загрузка…
Ссылка в новой задаче