https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ad6018d3a07c0903d6b00c72cd9bd0541d607c2b authored by Ms2ger on 27 February 2018, 14:20:49 UTC
Add a section on landing changes.
Tip revision: ad6018d
hitregions-members-exist.html
<!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>
back to top