mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-10-31 18:38:45 +01:00
52e44e0eb2
Fixes #189
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<script src="firstPossibleCall.js"></script>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
</head>
|
|
<body>
|
|
<div id="top">
|
|
<h1>top Test</h1>
|
|
<img class="display"><br>
|
|
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
|
|
<button>refresh</button>
|
|
</div>
|
|
<div id="iframe">
|
|
<h1>iFrame Test. Thanks to DocumentRoot.</h1>
|
|
<img class="display"><br>
|
|
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
|
|
<iframe sandbox="allow-same-origin" style="display:none"></iframe>
|
|
<button>refresh</button>
|
|
</div>
|
|
</div>
|
|
<div id="iframe2">
|
|
<h1>iFrame Test 2 - with URL</h1>
|
|
<img class="display"><br>
|
|
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
|
|
<iframe src="?" sandbox="allow-same-origin" style="display:none"></iframe>
|
|
<button>refresh</button>
|
|
</div>
|
|
</div>
|
|
<div id="iframe3">
|
|
<h1>iFrame Test 3 - violating SOP</h1>
|
|
<img class="display"><br>
|
|
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
|
|
<iframe src="http://example.org" style="display:none"></iframe>
|
|
<button>refresh</button>
|
|
</div>
|
|
<script src="test.js"></script>
|
|
</body></html> |