Path2D.idl 318 B

1234567891011
  1. #import <HTML/Canvas/CanvasPath.idl>
  2. // https://html.spec.whatwg.org/multipage/canvas.html#path2d
  3. [Exposed=(Window,Worker)]
  4. interface Path2D {
  5. constructor(optional (Path2D or DOMString) path);
  6. // FIXME: undefined addPath(Path2D path, optional DOMMatrix2DInit transform = {});
  7. };
  8. Path2D includes CanvasPath;