https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bfcd8e9d5a96b85c544123e76ba6c9131aedab9d authored by Darren Shen on 26 March 2018, 01:54:20 UTC
[css-typed-om] Support font properties.
Tip revision: bfcd8e9
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