LibWeb: Use 'FIXME' extended attribute where possible

This improves the debuggability of many live web pages :^)
This commit is contained in:
Shannon Booth 2024-05-19 22:15:54 +12:00 committed by Andreas Kling
commit 4fe0cbcf85
Notes: sideshowbarker 2024-07-17 18:06:52 +09:00
55 changed files with 184 additions and 187 deletions

View file

@ -3,19 +3,19 @@
// https://svgwg.org/svg2-draft/single-page.html#coords-InterfaceSVGTransformList
[Exposed=Window]
interface SVGTransformList {
// FIXME: readonly attribute unsigned long length;
// FIXME: readonly attribute unsigned long numberOfItems;
[FIXME] readonly attribute unsigned long length;
[FIXME] readonly attribute unsigned long numberOfItems;
// FIXME: undefined clear();
[FIXME] undefined clear();
// FIXME: SVGTransform initialize(SVGTransform newItem);
getter SVGTransform getItem(unsigned long index);
// FIXME: SVGTransform insertItemBefore(SVGTransform newItem, unsigned long index);
// FIXME: SVGTransform replaceItem(SVGTransform newItem, unsigned long index);
// FIXME: SVGTransform removeItem(unsigned long index);
[FIXME] SVGTransform insertItemBefore(SVGTransform newItem, unsigned long index);
[FIXME] SVGTransform replaceItem(SVGTransform newItem, unsigned long index);
[FIXME] SVGTransform removeItem(unsigned long index);
SVGTransform appendItem(SVGTransform newItem);
// FIXME: setter undefined (unsigned long index, SVGTransform newItem);
// Additional methods not common to other list interfaces.
// FIXME: SVGTransform createSVGTransformFromMatrix(optional DOMMatrix2DInit matrix = {});
// FIXME: SVGTransform? consolidate();
[FIXME] SVGTransform createSVGTransformFromMatrix(optional DOMMatrix2DInit matrix = {});
[FIXME] SVGTransform? consolidate();
};