2014-04-26 18:34:51 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function ok(b,m) {
|
|
|
|
return external.ok(b, m);
|
|
|
|
}
|
|
|
|
|
|
|
|
function nav_back_test() {
|
|
|
|
external.trace("Running _parent navigation tests...");
|
|
|
|
|
|
|
|
var iframe = document.getElementById("testframe");
|
|
|
|
var subframe = iframe.contentWindow.document.createElement("iframe");
|
|
|
|
|
|
|
|
subframe.onload = function() {
|
|
|
|
var doc = subframe.contentWindow.document;
|
|
|
|
doc.body.innerHTML = '<a href="blank2.html" id="aid" target="_parent">test</a>';
|
|
|
|
doc.getElementById("aid").click();
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe.onload = function() {
|
2014-10-02 09:51:45 +00:00
|
|
|
iframe.onload = null;
|
2014-04-26 18:34:51 +00:00
|
|
|
var href = iframe.contentWindow.location.href;
|
|
|
|
ok(/.*blank2.html/.test(href), "Unexpected href " + href);
|
|
|
|
next_test();
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe.contentWindow.document.body.appendChild(subframe);
|
|
|
|
subframe.src = "blank.html";
|
|
|
|
}
|
|
|
|
|
2014-10-02 09:51:45 +00:00
|
|
|
function window_navigate_test() {
|
|
|
|
external.trace("Runnint window.navigate() tests...");
|
|
|
|
|
|
|
|
var iframe = document.getElementById("testframe");
|
|
|
|
|
|
|
|
iframe.onload = function() {
|
|
|
|
iframe.onlod = null;
|
|
|
|
var href = iframe.contentWindow.location.href;
|
|
|
|
ok(href === "about:blank", "Unexpected href " + href);
|
|
|
|
next_test();
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe.contentWindow.navigate("about:blank");
|
|
|
|
}
|
|
|
|
|
2014-04-26 18:34:51 +00:00
|
|
|
var tests = [
|
|
|
|
nav_back_test,
|
2014-10-02 09:51:45 +00:00
|
|
|
window_navigate_test,
|
2014-04-26 18:34:51 +00:00
|
|
|
function() { external.reportSuccess(); }
|
|
|
|
];
|
|
|
|
|
|
|
|
function next_test() {
|
|
|
|
window.setTimeout(tests.shift(), 0);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<body onload="next_test()">
|
|
|
|
<iframe src="about:blank" id="testframe"></iframe>
|
|
|
|
</body>
|
|
|
|
</html>
|