gecko-dev/js/xpconnect/tests/mochitest/file_bug650273.html
Peter Van der Beken 9a1b39f5e4 Fix for bug 853136 (Prepare some tests for HTMLDocument using a WebIDL binding). r=bholley.
--HG--
extra : rebase_source : 0a19404b8d40075488568e179088e3c41ee8c4e4
2013-03-14 14:50:46 +01:00

32 lines
774 B
HTML

<!-- test by moz_bug_r_a4@yahoo.com -->
<body onload="a()">
<script>
var targetUrl = "http://example.com/";
var l;
function a() {
var o = {};
o.toString = function() {
l();
return "a";
};
var f = Object.getOwnPropertyDescriptor(Document.prototype, "title").set;
setTimeout(f.bind(document), 0, o);
}
function l() {
var l = false;
onunload = function() {
l = true;
};
location = targetUrl;
do {
var r = new XMLHttpRequest();
r.open("GET", location.href, false);
r.overrideMimeType("text/plain");
try { r.send(null); }
catch (e) {}
} while (!l);
}
</script>