- From: youennf <notifications@github.com>
- Date: Tue, 06 Sep 2016 12:08:34 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
Received on Tuesday, 6 September 2016 19:09:26 UTC
`<script>
window.onerror = function(message, source, lineno, colno, error)
{
console.log(message + "\nReceived error from \"" + source + "\". Error location is " + lineno + ":" + colno + ".");
}
var script = document.createElement("script");
script.crossOrigin = "";
script.src = "data:text/script, throw 'PASS: my error is rich!'";
document.body.appendChild(script);
</script>`
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/381#issuecomment-245056811
Received on Tuesday, 6 September 2016 19:09:26 UTC