mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
BrowsingContext.findWithName is required to do access checks based on the requestor, which can only be done in the process which owns it. This change also alters the behavior of the existing CanAccess origin checks, which typically treat any item as same-origin, but only when the docshells are actually same process. Removing the exemption fixes the behavior discrepancy between Fission and non-Fission runs, but also requires that the test be updated to expect proper access checks. Which is the situation we really want to test, anyway. Differential Revision: https://phabricator.services.mozilla.com/D45837 --HG-- extra : moz-landing-system : lando
15 lines
304 B
HTML
15 lines
304 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
if (opener) {
|
|
addEventListener("load", function() {
|
|
opener.postMessage("load", "*");
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
This file posts a message containing "load" to opener on load completion.
|
|
</body>
|
|
</html>
|