https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e263d32f5b42013fe3e9872c6ced147912b10443 authored by Greg Whitworth on 28 June 2017, 01:37:45 UTC
Made more changes based on analysis of tests that were <= 5 tests to a given url hash in flex
Tip revision: e263d32
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