mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 973837 - Check that view-source is not allowed for <object>s. r=johns
This commit is contained in:
parent
4d762db166
commit
62a79729a4
10
content/base/test/file_general_document.html
Normal file
10
content/base/test/file_general_document.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>General document for testing</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Hello mochitest!</p>
|
||||
</body>
|
||||
</html>
|
@ -135,6 +135,7 @@ support-files =
|
||||
file_bug902350.html
|
||||
file_bug902350_frame.html
|
||||
file_bug907892.html
|
||||
file_general_document.html
|
||||
file_html_in_xhr.html
|
||||
file_html_in_xhr.sjs
|
||||
file_html_in_xhr2.html
|
||||
@ -604,6 +605,7 @@ skip-if = toolkit == 'android' || e10s #RANDOM
|
||||
[test_title.html]
|
||||
[test_treewalker_nextsibling.xml]
|
||||
[test_viewport_scroll.html]
|
||||
[test_viewsource_forbidden_in_object.html]
|
||||
[test_w3element_traversal.html]
|
||||
[test_w3element_traversal.xhtml]
|
||||
[test_w3element_traversal_svg.html]
|
||||
|
74
content/base/test/test_viewsource_forbidden_in_object.html
Normal file
74
content/base/test/test_viewsource_forbidden_in_object.html
Normal file
@ -0,0 +1,74 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=973837
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Tests for Bug 973837</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
|
||||
<script>
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
const OBJLC = SpecialPowers.Ci.nsIObjectLoadingContent;
|
||||
|
||||
function runObjectURITest(testCase) {
|
||||
var testObject = document.getElementById("testObject");
|
||||
testObject.data = testCase.URI;
|
||||
|
||||
testObject instanceof OBJLC;
|
||||
testObject = SpecialPowers.wrap(testObject);
|
||||
|
||||
is(testObject.displayedType, OBJLC.TYPE_NULL, testCase.desc +
|
||||
" testObject.displayedType should be TYPE_NULL (4)");
|
||||
runNextTest();
|
||||
}
|
||||
|
||||
var testCaseIndex = -1;
|
||||
testCases = [
|
||||
{
|
||||
desc: "Test 1: view-source should not be allowed in an object.",
|
||||
URI: "view-source:file_general_document.html"
|
||||
},
|
||||
{
|
||||
desc: "Test 2: feed:view-source should not be allowed in an object.",
|
||||
URI: "feed:view-source:file_general_document.html"
|
||||
},
|
||||
{
|
||||
desc: "Test 3: jar:view-source should not be allowed in an object",
|
||||
URI: "jar:view-source:file_general_document.html/!/"
|
||||
},
|
||||
{
|
||||
desc: "Test 4: pcast:view-source should not be allowed in an object",
|
||||
URI: "pcast:view-source:file_general_document.html"
|
||||
},
|
||||
{
|
||||
desc: "Test 5: pcast:feed:view-source should not be allowed in an object",
|
||||
URI: "pcast:feed:view-source:file_general_document.html"
|
||||
}
|
||||
];
|
||||
|
||||
function runNextTest() {
|
||||
++testCaseIndex;
|
||||
if (testCaseIndex == testCases.length) {
|
||||
SimpleTest.finish();
|
||||
return;
|
||||
}
|
||||
|
||||
runObjectURITest(testCases[testCaseIndex]);
|
||||
}
|
||||
|
||||
addLoadEvent(runNextTest);
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=973837">Mozilla Bug 973837</a>
|
||||
<p id="display"></p>
|
||||
|
||||
<object id="testObject"></object>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user