mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
This commit is contained in:
parent
7c69b4737b
commit
4fe0cbcf85
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/shannonbooth
Commit: 4fe0cbcf85
Pull-request: https://github.com/SerenityOS/serenity/pull/24377
Reviewed-by: https://github.com/tcl3
55 changed files with 184 additions and 187 deletions
|
@ -18,8 +18,8 @@ interface mixin CanvasDrawPath {
|
|||
// FIXME: `DOMString` should be `CanvasFillRule`
|
||||
undefined clip(Path2D path, optional DOMString fillRule = "nonzero");
|
||||
|
||||
// FIXME: boolean isPointInPath(unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
// FIXME: boolean isPointInPath(Path2D path, unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
// FIXME: boolean isPointInStroke(unrestricted double x, unrestricted double y);
|
||||
// FIXME: boolean isPointInStroke(Path2D path, unrestricted double x, unrestricted double y);
|
||||
[FIXME] boolean isPointInPath(unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
[FIXME] boolean isPointInPath(Path2D path, unrestricted double x, unrestricted double y, optional CanvasFillRule fillRule = "nonzero");
|
||||
[FIXME] boolean isPointInStroke(unrestricted double x, unrestricted double y);
|
||||
[FIXME] boolean isPointInStroke(Path2D path, unrestricted double x, unrestricted double y);
|
||||
};
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
// https://html.spec.whatwg.org/multipage/canvas.html#canvasimagedata
|
||||
interface mixin CanvasImageData {
|
||||
ImageData createImageData([EnforceRange] long sw, [EnforceRange] long sh, optional ImageDataSettings settings = {});
|
||||
// FIXME: ImageData createImageData(ImageData imagedata);
|
||||
[FIXME] ImageData createImageData(ImageData imagedata);
|
||||
|
||||
ImageData getImageData([EnforceRange] long sx, [EnforceRange] long sy, [EnforceRange] long sw, [EnforceRange] long sh, optional ImageDataSettings settings = {});
|
||||
|
||||
undefined putImageData(ImageData imagedata, [EnforceRange] long dx, [EnforceRange] long dy);
|
||||
// FIXME: undefined putImageData(ImageData imagedata, [EnforceRange] long dx, [EnforceRange] long dy, [EnforceRange] long dirtyX, [EnforceRange] long dirtyY, [EnforceRange] long dirtyWidth, [EnforceRange] long dirtyHeight);
|
||||
[FIXME] undefined putImageData(ImageData imagedata, [EnforceRange] long dx, [EnforceRange] long dy, [EnforceRange] long dirtyX, [EnforceRange] long dirtyY, [EnforceRange] long dirtyWidth, [EnforceRange] long dirtyHeight);
|
||||
};
|
||||
|
|
|
@ -9,7 +9,7 @@ interface mixin CanvasPathDrawingStyles {
|
|||
// FIXME: attribute CanvasLineJoin lineJoin;
|
||||
// FIXME: attribute unrestricted double miterLimit;
|
||||
|
||||
// FIXME: undefined setLineDash(sequence<unrestricted double> segments);
|
||||
// FIXME: sequence<unrestricted double> getLineDash();
|
||||
[FIXME] undefined setLineDash(sequence<unrestricted double> segments);
|
||||
[FIXME] sequence<unrestricted double> getLineDash();
|
||||
// FIXME: attribute unrestricted double lineDashOffset;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue