mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-01 02:48:44 +01:00
8ca23e37e1
For #208.
22 lines
520 B
PHP
22 lines
520 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>data-URL Test</title>
|
|
<style>
|
|
iframe {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 7em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Normal iFrame</h1>
|
|
<iframe src="sendFingerprintTest.html"></iframe>
|
|
<h1>Data-URL iFrame</h1>
|
|
<iframe id="iframe" src="data:text/html;base64,<?php echo base64_encode(file_get_contents("sendFingerprintTest.html"));?>"></iframe>
|
|
<h1>iFrame code</h1>
|
|
<pre id="code"></pre>
|
|
<script src="dataUrlTest.js"></script>
|
|
</body></html> |