mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
Update web-platform-tests to revision abd18b3e018d25ed668d179c905b7869dca5e239
This commit is contained in:
parent
908a642063
commit
158f7eec0e
117 changed files with 2997 additions and 434 deletions
|
@ -0,0 +1,36 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "CSS Animation Worklet API" spec.
|
||||
// See: https://wicg.github.io/animation-worklet/
|
||||
|
||||
partial interface Window {
|
||||
[SameObject] readonly attribute Worklet animationWorklet;
|
||||
};
|
||||
|
||||
callback VoidFunction = void ();
|
||||
|
||||
[ Exposed=AnimationWorklet, Global=AnimationWorklet ]
|
||||
interface AnimationWorkletGlobalScope : WorkletGlobalScope {
|
||||
void registerAnimator(DOMString name, VoidFunction animatorCtor);
|
||||
};
|
||||
|
||||
[Constructor (DOMString animatorName,
|
||||
optional (AnimationEffectReadOnly or sequence)? effects = null,
|
||||
optional AnimationTimeline? timeline,
|
||||
optional any options)]
|
||||
interface WorkletAnimation : Animation {
|
||||
readonly attribute DOMString animatorName;
|
||||
};
|
||||
|
||||
|
||||
interface WorkletGroupEffectReadOnly : GroupEffectReadOnly {};
|
||||
|
||||
interface WorkletGroupEffect : WorkletGroupEffectReadOnly {};
|
||||
WorkletGroupEffect implements AnimationEffectMutable;
|
||||
WorkletGroupEffect implements GroupEffectMutable;
|
||||
|
||||
[Exposed=AnimationWorklet]
|
||||
partial interface AnimationEffectReadOnly {
|
||||
// Intended for use inside Animation Worklet scope to drive the effect.
|
||||
attribute double localTime;
|
||||
};
|
|
@ -1,9 +1,13 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "Console Standard" spec.
|
||||
// See: https://console.spec.whatwg.org/
|
||||
|
||||
[Exposed=(Window,Worker,Worklet)]
|
||||
namespace console { // but see namespace object requirements below
|
||||
// Logging
|
||||
void assert(optional boolean condition = false, any... data);
|
||||
void clear();
|
||||
void count(optional DOMString label = "default");
|
||||
void debug(any... data);
|
||||
void error(any... data);
|
||||
void info(any... data);
|
||||
|
@ -14,6 +18,10 @@ namespace console { // but see namespace object requirements below
|
|||
void dir(any item, optional object? options);
|
||||
void dirxml(any... data);
|
||||
|
||||
// Counting
|
||||
void count(optional DOMString label = "default");
|
||||
void countReset(optional DOMString label = "default");
|
||||
|
||||
// Grouping
|
||||
void group(any... data);
|
||||
void groupCollapsed(any... data);
|
||||
|
@ -21,5 +29,6 @@ namespace console { // but see namespace object requirements below
|
|||
|
||||
// Timing
|
||||
void time(optional DOMString label = "default");
|
||||
void timeLog(optional DOMString label = "default", any... data);
|
||||
void timeEnd(optional DOMString label = "default");
|
||||
};
|
||||
|
|
6
tests/wpt/web-platform-tests/interfaces/paint-timing.idl
Normal file
6
tests/wpt/web-platform-tests/interfaces/paint-timing.idl
Normal file
|
@ -0,0 +1,6 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "Paint Timing 1" spec.
|
||||
// See: https://w3c.github.io/paint-timing/
|
||||
|
||||
interface PerformancePaintTiming : PerformanceEntry {};
|
Loading…
Add table
Add a link
Reference in a new issue