Bug 733269. (Av1) redirect.html: Let its load complete before redirecting. rs=jwalden.

This commit is contained in:
Serge Gautherie 2012-03-30 12:27:50 +02:00
parent 818ebb672e
commit 9b4ddb81ae

View File

@ -14,10 +14,13 @@
document.dispatchEvent(element);
}
redirect("chrome://mochikit/content/harness.xul");
function onLoad() {
redirect("chrome://mochikit/content/harness.xul");
}
</script>
</head>
<body>
<body onload="onLoad();">
redirecting...
</body>
</html>