blob: b9203f56067585a6b6183df35311211c86421641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<title>Canvas test: 2d.hitregions.members.exist</title>
<meta name="author" content="Constantine Kim">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<h1>2d.hitregions.members.exist</h1>
<canvas></canvas>
<div id="log"></div>
<script>
test(function () {
var ctx = document.createElement('canvas').getContext('2d');
assert_equals(typeof ctx.addHitRegion, 'function');
}, 'context.addHitRegion Exists');
test(function () {
var ctx = document.createElement('canvas').getContext('2d');
assert_equals(typeof ctx.removeHitRegion, 'function');
}, 'context.removeHitRegion Exists');
test(function () {
var ctx = document.createElement('canvas').getContext('2d');
assert_equals(typeof ctx.clearHitRegions, 'function');
}, 'context.clearHitRegions Exists');
</script>
</body>
</html>
|