2007-02-20 01:56:30 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>redirecting...</title>
|
|
|
|
|
2008-02-14 10:32:21 +00:00
|
|
|
<script type="text/javascript">
|
2011-10-06 14:51:03 +00:00
|
|
|
function redirect(aURL)
|
|
|
|
{
|
|
|
|
// We create a listener for this event in browser-test.js
|
|
|
|
// which will get picked up when specifying --chrome or --a11y
|
|
|
|
var element = document.createEvent("datacontainerevent");
|
|
|
|
element.initEvent("contentEvent", true, false);
|
|
|
|
element.setData("data", aURL + location.search);
|
|
|
|
element.setData("type", "loadURI");
|
|
|
|
document.dispatchEvent(element);
|
|
|
|
}
|
|
|
|
|
2012-03-30 10:27:50 +00:00
|
|
|
function onLoad() {
|
|
|
|
redirect("chrome://mochikit/content/harness.xul");
|
|
|
|
}
|
2007-02-20 01:56:30 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
2012-03-30 10:27:50 +00:00
|
|
|
|
|
|
|
<body onload="onLoad();">
|
2007-02-20 01:56:30 +00:00
|
|
|
redirecting...
|
|
|
|
</body>
|
|
|
|
</html>
|