зеркало из https://github.com/mozilla/gecko-dev.git
Bug 675518 - Add crashtest. r=me
This commit is contained in:
Родитель
8d28e8cb3d
Коммит
c6c08296c6
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<script>
|
||||
function init()
|
||||
{
|
||||
SpecialPowers.pushPrefEnv({"set": [
|
||||
["security.data_uri.unique_opaque_origin", false],
|
||||
["security.data_uri.block_toplevel_data_uri_navigations", false],
|
||||
]}, boom);
|
||||
}
|
||||
|
||||
function boom()
|
||||
{
|
||||
var frame = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
|
||||
frame.src = "data:text/html,1";
|
||||
document.body.appendChild(frame);
|
||||
var frameWin = frame.contentWindow;
|
||||
|
||||
var resizeListener = function() {
|
||||
frameWin.removeEventListener("resize", resizeListener, false);
|
||||
frameWin.document.write("3...");
|
||||
};
|
||||
frameWin.addEventListener("resize", resizeListener, false);
|
||||
|
||||
frameWin.document.write("2...");
|
||||
|
||||
SpecialPowers.clearUserPref("security.data_uri.unique_opaque_origin");
|
||||
}
|
||||
|
||||
</script>
|
||||
<body onload="init();"></body>
|
||||
</html>
|
|
@ -1,3 +1,4 @@
|
|||
load 675518.html
|
||||
load 785753-1.html
|
||||
load 785753-2.html
|
||||
load 1274044-1.html
|
||||
|
|
Загрузка…
Ссылка в новой задаче