https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 55d48b7dd6daa53f4817a045cd559b570fadafc3 authored by Darren Shen on 15 March 2018, 05:06:57 UTC
[css-typed-om] Add support for flex properties.
Tip revision: 55d48b7
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