1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-02-01 08:14:36 +01:00
CanvasBlocker/test/dataUrlTest.js

7 lines
170 B
JavaScript
Raw Normal View History

(function(){
"use strict";
document.getElementById("code").textContent = atob(
document.getElementById("iframe").src.replace("data:text/html;base64,", "")
);
}());