1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-11-11 15:48:51 +01:00

data-URL test requires proper mime type in current Firefox

This commit is contained in:
kkapsner 2019-04-10 01:04:40 +02:00
parent bab7d1496f
commit eb8906ea3b

View File

@ -16,7 +16,7 @@
<h1>Normal iFrame</h1> <h1>Normal iFrame</h1>
<iframe src="sendFingerprintTest.html"></iframe> <iframe src="sendFingerprintTest.html"></iframe>
<h1>Data-URL iFrame</h1> <h1>Data-URL iFrame</h1>
<iframe id="iframe" src="data:invalid;base64&#x2c;<?php <iframe id="iframe" src="data:text/html;base64&#x2c;<?php
echo base64_encode( echo base64_encode(
str_replace( str_replace(
'const origin = "iframe";', 'const origin = "iframe";',
@ -30,7 +30,7 @@
<h1>Data-URL object</h1> <h1>Data-URL object</h1>
<object <object
type="text/html" type="text/html"
data="data:invalid;base64&#x2c;<?php data="data:text/html;base64&#x2c;<?php
echo base64_encode( echo base64_encode(
str_replace( str_replace(
'const origin = "iframe";', 'const origin = "iframe";',
@ -43,7 +43,7 @@
<h1>Data-URL embed</h1> <h1>Data-URL embed</h1>
<embed <embed
type="text/html" type="text/html"
src="data:invalid;base64&#x2c;<?php src="data:text/html;base64&#x2c;<?php
echo base64_encode( echo base64_encode(
str_replace( str_replace(
'const origin = "iframe";', 'const origin = "iframe";',