mirror of
https://github.com/servo/servo.git
synced 2025-08-12 00:45:33 +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
3
tests/wpt/web-platform-tests/interfaces/META.yml
Normal file
3
tests/wpt/web-platform-tests/interfaces/META.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
suggested_reviewers:
|
||||
- jensl
|
||||
- yuki3
|
|
@ -1,2 +0,0 @@
|
|||
@jensl
|
||||
@yuki3
|
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;
|
||||
};
|
|
@ -1,3 +1,8 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "XMLHttpRequest Standard" spec.
|
||||
// See: https://xhr.spec.whatwg.org/
|
||||
|
||||
[Exposed=(Window,DedicatedWorker,SharedWorker)]
|
||||
interface XMLHttpRequestEventTarget : EventTarget {
|
||||
// event handlers
|
||||
|
@ -59,7 +64,6 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
|
|||
readonly attribute USVString responseText;
|
||||
[Exposed=Window] readonly attribute Document? responseXML;
|
||||
};
|
||||
|
||||
typedef (File or USVString) FormDataEntryValue;
|
||||
|
||||
[Constructor(optional HTMLFormElement form),
|
||||
|
@ -75,7 +79,6 @@ interface FormData {
|
|||
void set(USVString name, Blob blobValue, optional USVString filename);
|
||||
iterable<USVString, FormDataEntryValue>;
|
||||
};
|
||||
|
||||
[Constructor(DOMString type, optional ProgressEventInit eventInitDict),
|
||||
Exposed=(Window,DedicatedWorker,SharedWorker)]
|
||||
interface ProgressEvent : Event {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue