mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 12:50:36 +01:00
5785c3c2a0
For #321
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
|
|
var createLog = function(){
|
|
"use strict";
|
|
|
|
var div = document.getElementById("log");
|
|
|
|
return function createLog(){
|
|
var logDiv = document.createElement("div");
|
|
logDiv.className = "log";
|
|
div.appendChild(logDiv);
|
|
return function createLine(str){
|
|
var logLine = document.createElement("div");
|
|
logLine.className = "logLine";
|
|
logDiv.appendChild(logLine);
|
|
logLine.textContent = str;
|
|
return function updateLine(str){
|
|
logLine.textContent = str;
|
|
};
|
|
};
|
|
};
|
|
}();
|
|
|
|
var log = createLog();
|
|
|
|
log("user agent equal between server and client: " + (window.serverUserAgent === navigator.userAgent));
|
|
|
|
Object.keys(navigator.__proto__).sort().forEach(function(property){
|
|
"use strict";
|
|
|
|
var value = navigator[property];
|
|
if ((typeof value) === "string"){
|
|
log(property + ": " + value);
|
|
}
|
|
});
|
|
|
|
var section = document.createElement("h2");
|
|
section.textContent = "Values in iFrame";
|
|
document.getElementById("log").append(section);
|
|
|
|
log = createLog();
|
|
|
|
var iframe = document.createElement("iframe");
|
|
document.body.appendChild(iframe);
|
|
var iframeWindow = frames[frames.length - 1];
|
|
|
|
Object.keys(navigator.__proto__).sort().forEach(function(property){
|
|
"use strict";
|
|
|
|
var value = iframeWindow.navigator[property];
|
|
if ((typeof value) === "string"){
|
|
log(property + "@iframe: " + value);
|
|
}
|
|
});
|
|
document.body.removeChild(iframe); |