mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
253 lines
14 KiB
HTML
253 lines
14 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=704320
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 704320</title>
|
|
<script type="application/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=704320">Mozilla Bug 704320</a>
|
|
<p id="display"></p>
|
|
<pre id="content">
|
|
</pre>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
|
var testIframeUrls = [
|
|
// HTTP to HTTP
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=no-referrer-when-downgrade',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=no-referrer',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=unsafe-url',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=origin',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=origin-when-crossorigin',
|
|
// HTTP to HTTPS
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer-when-downgrade',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=unsafe-url',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=origin',
|
|
'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=origin-when-crossorigin',
|
|
// HTTPS to HTTP
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=no-referrer-when-downgrade',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=no-referrer',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=unsafe-url',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=origin',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=origin-when-crossorigin',
|
|
// HTTPS to HTTPS
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=no-referrer-when-downgrade',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=no-referrer',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=unsafe-url',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=origin',
|
|
'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=origin-when-crossorigin'
|
|
];
|
|
|
|
var expectedResults = {
|
|
// From docshell/base/nsDocShell.cpp:
|
|
// "If the document containing the hyperlink being audited was not retrieved
|
|
// over an encrypted connection and its address does not have the same
|
|
// origin as "ping URL", send a referrer."
|
|
'link-ping': {
|
|
// Same-origin
|
|
'http-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': '',
|
|
'origin': '',
|
|
'origin-when-crossorigin': '',
|
|
'no-referrer-when-downgrade': ''
|
|
},
|
|
'http-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=unsafe-url',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer-when-downgrade'
|
|
},
|
|
// Encrypted and not same-origin
|
|
'https-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': '',
|
|
'origin': '',
|
|
'origin-when-crossorigin': '',
|
|
'no-referrer-when-downgrade': ''
|
|
},
|
|
// Encrypted
|
|
'https-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': '',
|
|
'origin': '',
|
|
'origin-when-crossorigin': '',
|
|
'no-referrer-when-downgrade': ''
|
|
}
|
|
},
|
|
// form is tested in a 2nd level iframe.
|
|
'form': {
|
|
'http-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=unsafe-url&type=form',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=origin-when-crossorigin&type=form',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=no-referrer-when-downgrade&type=form'
|
|
},
|
|
'http-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=https&policy=unsafe-url&type=form',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer-when-downgrade&type=form'
|
|
},
|
|
'https-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=http&policy=unsafe-url&type=form',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com',
|
|
'no-referrer-when-downgrade': ''
|
|
},
|
|
'https-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=unsafe-url&type=form',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=origin-when-crossorigin&type=form',
|
|
'no-referrer-when-downgrade': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=no-referrer-when-downgrade&type=form'
|
|
}
|
|
},
|
|
// window.location is tested in a 2nd level iframe.
|
|
'window.location': {
|
|
'http-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=unsafe-url&type=window.location',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=origin-when-crossorigin&type=window.location',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=http&policy=no-referrer-when-downgrade&type=window.location'
|
|
},
|
|
'http-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=https&policy=unsafe-url&type=window.location',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer-when-downgrade&type=window.location'
|
|
},
|
|
'https-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=http&policy=unsafe-url&type=window.location',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com',
|
|
'no-referrer-when-downgrade': ''
|
|
},
|
|
'https-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=unsafe-url&type=window.location',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=origin-when-crossorigin&type=window.location',
|
|
'no-referrer-when-downgrade': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-2nd-level-iframe&scheme-from=https&scheme-to=https&policy=no-referrer-when-downgrade&type=window.location'
|
|
}
|
|
},
|
|
'default': {
|
|
'http-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=unsafe-url',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=origin-when-crossorigin',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=http&policy=no-referrer-when-downgrade'
|
|
},
|
|
'http-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=unsafe-url',
|
|
'origin': 'http://example.com',
|
|
'origin-when-crossorigin': 'http://example.com',
|
|
'no-referrer-when-downgrade': 'http://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=http&scheme-to=https&policy=no-referrer-when-downgrade'
|
|
},
|
|
'https-to-http': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=http&policy=unsafe-url',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com',
|
|
'no-referrer-when-downgrade': ''
|
|
},
|
|
'https-to-https': {
|
|
'no-referrer': '',
|
|
'unsafe-url': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=unsafe-url',
|
|
'origin': 'https://example.com',
|
|
'origin-when-crossorigin': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=origin-when-crossorigin',
|
|
'no-referrer-when-downgrade': 'https://example.com/tests/dom/base/test/bug704320.sjs?action=create-1st-level-iframe&scheme-from=https&scheme-to=https&policy=no-referrer-when-downgrade'
|
|
}
|
|
}
|
|
};
|
|
|
|
function runit() {
|
|
var url = 'bug704320.sjs?action=get-test-results';
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.open('GET', url);
|
|
xhr.onreadystatechange = function() {
|
|
//dump("\n\n >>>>>>>>>>> XHR ReadyState change \n" + url + "\n\n\n\n");
|
|
if (this.readyState == 4) {
|
|
document.getElementById('content').textContent +=
|
|
JSON.stringify(JSON.parse(this.response), null, 4);
|
|
|
|
//dump("\n\n >>>>>>>>>>> GOT RESPONSE: \n" + this.response + "\n\n\n\n");
|
|
var response = JSON.parse(this.response);
|
|
|
|
for (type in response) {
|
|
for (scheme in response[type]) {
|
|
for (policy in response[type][scheme]) {
|
|
var expectedResult = expectedResults[type] === undefined ?
|
|
expectedResults['default'][scheme][policy] :
|
|
expectedResults[type][scheme][policy];
|
|
|
|
is(response[type][scheme][policy], expectedResult,
|
|
type + ' ' + scheme + ' ' + policy);
|
|
}
|
|
}
|
|
}
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
};
|
|
xhr.send();
|
|
}
|
|
|
|
// BEGIN
|
|
// Currently triggers assertions on e10s due to bug 820466. If you try to run
|
|
// this on e10s, you'll get some ssl-related assertions and should add this line:
|
|
// SimpleTest.expectAssertions(0,15);
|
|
// But this test is disabled on e10s for unexpected failures. See bug 1100362.
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SpecialPowers.pushPrefEnv({
|
|
'set': [['security.mixed_content.block_active_content', false],
|
|
['security.mixed_content.block_display_content', false],
|
|
['browser.send_pings', true],
|
|
['browser.send_pings.max_per_link', 1],
|
|
['browser.send_pings.require_same_host', false]]
|
|
},
|
|
function() {
|
|
var testContainer = document.getElementById('test');
|
|
|
|
testIframeUrls.forEach(function(url) {
|
|
var iframe = document.createElement('iframe');
|
|
iframe.setAttribute('class', 'test');
|
|
iframe.src = url;
|
|
testContainer.appendChild(iframe);
|
|
});
|
|
|
|
var numFrames = testIframeUrls.length;
|
|
var numFramesReady = 0;
|
|
|
|
window.addEventListener('message', function(event) {
|
|
++numFramesReady;
|
|
if (numFramesReady >= numFrames) {
|
|
runit();
|
|
}
|
|
}, false);
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|