LibWeb/DOM: Stub out Element pointerevents methods

This commit is contained in:
Sam Atkins 2025-04-11 17:49:12 +01:00
commit 11b6bd8138
Notes: github-actions[bot] 2025-04-11 20:28:09 +00:00

View file

@ -120,6 +120,10 @@ interface Element : Node {
// FIXME: [CEReactions] undefined insertAdjacentHTML(DOMString position, (TrustedHTML or DOMString) string);
[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);
};
dictionary GetHTMLOptions {