CountOrlok

Results 3 issues of CountOrlok

The section titled with "ARIA" contains an image, where the [visual content](https://github.com/WICG/aom/raw/master/images/a11y-node-ARIA.png) and the textual content of the `alt` attribute don't match. Actually, both the visual and the textual representation...

An `AccessibleNode` should contain a reference to the `Node` it is associated with. ```javascript function doSomethingWith (accessibleNode) { const domNode = accessibleNode.associatedNode; } const element = document.getElementById('name'); doSomethingWith(element.accessibleNode); // or...

According to the spec, `AccessibleNode` is attached to the `Node` interface of the DOM, but I'm not sure if it's really a good idea to hook into this interface. I...