1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-02 11:28:05 +02:00
CanvasBlocker/test/dataUrlTest.js
2018-07-21 19:35:24 +02:00

13 lines
350 B
JavaScript

(function(){
"use strict";
var iframeCode = atob(
document.getElementById("iframe").src.replace(/^.+base64,/, "")
);
document.getElementById("code").textContent = iframeCode;
var blob = new Blob([iframeCode], {type: "text/html"});
var newurl = window.URL.createObjectURL(blob);
document.getElementById("blobIframe").src = newurl;
}());