mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
9a1b39f5e4
--HG-- extra : rebase_source : 0a19404b8d40075488568e179088e3c41ee8c4e4
32 lines
774 B
HTML
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>
|