CanvasBlocker/test/test.html

77 lines
2.6 KiB
HTML
Raw Normal View History

2017-01-31 20:59:57 +01:00
<!DOCTYPE html>
2017-08-13 23:44:31 +02:00
<script src="firstPossibleCall.js"></script>
2017-01-31 20:59:57 +01:00
<html>
<head>
2019-09-04 00:30:20 +02:00
<title>Canvas test</title>
2019-02-20 08:13:37 +01:00
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="testIcon.svg" type="image/png" rel="icon">
<link href="testIcon.svg" type="image/png" rel="shortcut icon">
2017-01-31 20:59:57 +01:00
</head>
<body>
2019-09-04 00:30:20 +02:00
<h1>Canvas test</h1>
<h2>Expected result</h2>
<ul>
<li>all the hashes should be equal for each test</li>
<li>the hash before and after the "/" do not have to match</li>
<li>"isPointInPath" may vary between tests</li>
<li>if "refresh" is clicked the hash must not change (but "isPointInPath" may)</li>
<li>upon page reload the hash changes</li>
</ul>
<h2>Tests</h2>
2017-01-31 20:59:57 +01:00
<div id="top">
2019-09-04 00:30:20 +02:00
<h3>top Test</h3>
<img class="display"><br>
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
2017-04-23 00:25:33 +02:00
<button>refresh</button>
2017-01-31 20:59:57 +01:00
</div>
<div id="iframe">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test. Thanks to DocumentRoot.</h3>
<img class="display"><br>
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
2017-01-31 20:59:57 +01:00
<iframe sandbox="allow-same-origin" style="display:none"></iframe>
2017-04-23 00:25:33 +02:00
<button>refresh</button>
2017-01-31 20:59:57 +01:00
</div>
</div>
<div id="iframe2">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test 2 - with URL</h3>
<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">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test 3 - violating SOP</h3>
<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>
2019-05-22 23:46:56 +02:00
<div id="iframe4">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test 4 - different access 1</h3>
2019-05-22 23:46:56 +02:00
<img class="display"><br>
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
<button>refresh</button>
</div>
<div id="iframe5">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test 5 - different access 2</h3>
2019-05-22 23:46:56 +02:00
<img class="display"><br>
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
<button>refresh</button>
</div>
<div id="iframe6">
2019-09-04 00:30:20 +02:00
<h3>iFrame Test 6 - different access 3</h3>
2019-05-22 23:46:56 +02:00
<img class="display"><br>
Hash: <span class="hash"></span> (isPointInPath: <span class="isPointInPath"></span>)
<button>refresh</button>
</div>
2019-12-02 22:57:11 +01:00
<div id="windowOpen">
<h3>window.open Test</h3>
<img class="display"><br>
Hash: <span class="hash"><i>click anywhere to populate</i></span> (isPointInPath: <span class="isPointInPath"></span>)
<button>refresh</button>
</div>
2020-01-06 15:15:04 +01:00
<script src="testAPI.js"></script>
<script src="canvasAPI.js"></script>
2017-08-13 23:44:31 +02:00
<script src="test.js"></script>
2017-01-31 20:59:57 +01:00
</body></html>