LibWeb/DOM: Actually stub out pointer-capture API

For real this time.

This makes panning the KendoReact map widget actually work:
https://www.telerik.com/kendo-react-ui/components/map
This commit is contained in:
Sam Atkins 2025-04-14 10:10:36 +01:00 committed by Andreas Kling
commit 6ff2324f26
Notes: github-actions[bot] 2025-04-14 10:56:36 +00:00
3 changed files with 28 additions and 3 deletions

View file

@ -121,9 +121,9 @@ interface Element : Node {
[CEReactions] undefined insertAdjacentHTML(DOMString position, DOMString text);
// https://w3c.github.io/pointerevents/#extensions-to-the-element-interface
[FIXME] undefined setPointerCapture(long pointerId);
[FIXME] undefined releasePointerCapture(long pointerId);
[FIXME] boolean hasPointerCapture(long pointerId);
undefined setPointerCapture(long pointerId);
undefined releasePointerCapture(long pointerId);
boolean hasPointerCapture(long pointerId);
};
dictionary GetHTMLOptions {