mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
17 lines
512 B
JavaScript
17 lines
512 B
JavaScript
|
/**
|
||
|
* Any copyright is dedicated to the Public Domain.
|
||
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
*/
|
||
|
|
||
|
onmessage = function(event) {
|
||
|
postMessage({event: 'console exists', status: !!console, last : false});
|
||
|
var logCalled = false;
|
||
|
console.log = function() {
|
||
|
logCalled = true;
|
||
|
}
|
||
|
console.log("foo");
|
||
|
postMessage({event: 'console.log is replaceable', status: logCalled, last: false});
|
||
|
console = 42;
|
||
|
postMessage({event: 'console is replaceable', status: console === 42, last : true});
|
||
|
}
|