Re: [svgwg] Shouldn't getCharNumAtPosition take an argument of type DOMPointReadOnly rather than DOMPoint

Do `SVGGeometryInterface`'s `isPointInFill` and `isPointInStroke` have the same issue?
https://svgwg.org/svg2-draft/single-page.html#types-InterfaceSVGGeometryElement

These are currently defined as:
```
interface SVGGeometryElement : SVGGraphicsElement {
  ...
  boolean isPointInFill(DOMPoint point);
  boolean isPointInStroke(DOMPoint point);
  ...
}
```

-- 
GitHub Notification of comment by progers
Please view or discuss this issue at https://github.com/w3c/svgwg/issues/389#issuecomment-370157524 using your GitHub account

Received on Saturday, 3 March 2018 15:52:17 UTC