canvas 命中区域在 Google Chrome 中是否仍然可用?

Are canvas hit regions still available in Google Chrome?

出于可访问性原因,我们在 Web 应用程序中使用了实验性 命中区域 功能。我们刚刚发现此功能在 Google Chrome 中不再有效。我在官方网站上找不到任何相关信息。

这是 "Hit Region" 功能的简单演示:

let canvas = document.getElementById('canvas');
let ctx = canvas.getContext('2d');

// head
ctx.beginPath();
ctx.arc(100, 100, 75, 0, 2 * Math.PI, false);
ctx.lineWidth = 5;
ctx.stroke();

// eyes
ctx.beginPath();
ctx.arc(70, 80, 10, 0, 2 * Math.PI, false);
ctx.arc(130, 80, 10, 0, 2 * Math.PI, false);
ctx.fill();

try
{
  ctx.addHitRegion({id: "eyes"}); // NO SUPPORT => Exception

  // mouth :-)
  ctx.beginPath();
  ctx.arc(100, 110, 50, 0, Math.PI, false);
  ctx.stroke();
}
catch
{
  // mouth :-(
  ctx.beginPath();
  ctx.arc(100, 160, 40, Math.PI, 0, false);
  ctx.stroke();
}

canvas.addEventListener('mousemove', function(event) {
  if (event.region) {
    alert('hit region: ' + event.region);
  }
});
<canvas id="canvas"></canvas>

运行 上面的代码片段:

该演示在 Firefox 61.0.1 中运行,但在 Google Chrome 67.0.3396.99 中无法运行,我无法再在 chrome://flags/ 下找到相应的标志来启用它。有人知道这个功能是否被删除了吗?

The "Experimental Canvas Features" flag has been removed from Chrome in the latest Canary (CL). To play around with experimental canvas features, you could turn on the "Experimental Web Platform features" flag.
(source)

这是您正在寻找的新标志:

如果您启用该标志,您的代码段将呈现一个快乐的笑脸。