mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Update web-platform-tests to revision 66f38302334f162d363afcf4a1792d895072f3ef
This commit is contained in:
parent
36f5b69224
commit
b198cd722a
622 changed files with 3374 additions and 2001 deletions
39
tests/wpt/web-platform-tests/interfaces/css-paint-api.idl
Normal file
39
tests/wpt/web-platform-tests/interfaces/css-paint-api.idl
Normal file
|
@ -0,0 +1,39 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "CSS Painting API Level 1" spec.
|
||||
// See: https://drafts.css-houdini.org/css-paint-api-1/
|
||||
|
||||
partial interface CSS {
|
||||
[SameObject] readonly attribute Worklet paintWorklet;
|
||||
};
|
||||
|
||||
[Global=(Worklet,PaintWorklet),Exposed=PaintWorklet]
|
||||
interface PaintWorkletGlobalScope : WorkletGlobalScope {
|
||||
void registerPaint(DOMString name, VoidFunction paintCtor);
|
||||
readonly attribute unrestricted double devicePixelRatio;
|
||||
};
|
||||
|
||||
dictionary PaintRenderingContext2DSettings {
|
||||
boolean alpha = true;
|
||||
};
|
||||
|
||||
[Exposed=PaintWorklet]
|
||||
interface PaintRenderingContext2D {
|
||||
};
|
||||
PaintRenderingContext2D includes CanvasState;
|
||||
PaintRenderingContext2D includes CanvasTransform;
|
||||
PaintRenderingContext2D includes CanvasCompositing;
|
||||
PaintRenderingContext2D includes CanvasImageSmoothing;
|
||||
PaintRenderingContext2D includes CanvasFillStrokeStyles;
|
||||
PaintRenderingContext2D includes CanvasShadowStyles;
|
||||
PaintRenderingContext2D includes CanvasRect;
|
||||
PaintRenderingContext2D includes CanvasDrawPath;
|
||||
PaintRenderingContext2D includes CanvasDrawImage;
|
||||
PaintRenderingContext2D includes CanvasPathDrawingStyles;
|
||||
PaintRenderingContext2D includes CanvasPath;
|
||||
|
||||
[Exposed=PaintWorklet]
|
||||
interface PaintSize {
|
||||
readonly attribute double width;
|
||||
readonly attribute double height;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue