Skip to content

Commit fe01c9a

Browse files
committed
npm run fetch again
1 parent 5625755 commit fe01c9a

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

baselines/dom.generated.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2698,7 +2698,8 @@ interface CSSStyleDeclaration {
26982698
webkitAnimationPlayState: string;
26992699
/** @deprecated */
27002700
webkitAnimationTimingFunction: string;
2701-
webkitAppearance: string | null;
2701+
/** @deprecated */
2702+
webkitAppearance: string;
27022703
/** @deprecated */
27032704
webkitBackfaceVisibility: string;
27042705
/** @deprecated */
@@ -17813,7 +17814,7 @@ type RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";
1781317814
type RequestRedirect = "follow" | "error" | "manual";
1781417815
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
1781517816
type ScopedCredentialType = "ScopedCred";
17816-
type ScrollBehavior = "auto" | "instant" | "smooth";
17817+
type ScrollBehavior = "auto" | "smooth";
1781717818
type ScrollLogicalPosition = "start" | "center" | "end" | "nearest";
1781817819
type ScrollRestoration = "auto" | "manual";
1781917820
type ScrollSetting = "" | "up";

inputfiles/idl/CSS Animations.widl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
Constructor(CSSOMString type, optional AnimationEventInit animationEventInitDict)]
33
interface AnimationEvent : Event {
44
readonly attribute CSSOMString animationName;
5-
readonly attribute float elapsedTime;
5+
readonly attribute double elapsedTime;
66
readonly attribute CSSOMString pseudoElement;
77
};
88
dictionary AnimationEventInit : EventInit {
99
CSSOMString animationName = "";
10-
float elapsedTime = 0.0;
10+
double elapsedTime = 0.0;
1111
CSSOMString pseudoElement = "";
1212
};
1313

@@ -32,7 +32,7 @@ interface CSSKeyframesRule : CSSRule {
3232
CSSKeyframeRule? findRule(CSSOMString select);
3333
};
3434

35-
partial interface GlobalEventHandlers {
35+
partial interface mixin GlobalEventHandlers {
3636
attribute EventHandler onanimationstart;
3737
attribute EventHandler onanimationiteration;
3838
attribute EventHandler onanimationend;

inputfiles/idl/CSS Transitions.widl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
[Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
1+
[Exposed=Window,
2+
Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
23
interface TransitionEvent : Event {
34
readonly attribute CSSOMString propertyName;
4-
readonly attribute float elapsedTime;
5+
readonly attribute double elapsedTime;
56
readonly attribute CSSOMString pseudoElement;
67
};
78

89
dictionary TransitionEventInit : EventInit {
910
CSSOMString propertyName = "";
10-
float elapsedTime = 0.0;
11+
double elapsedTime = 0.0;
1112
CSSOMString pseudoElement = "";
1213
};
1314

inputfiles/idl/CSSOM View.widl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
enum ScrollBehavior { "auto", "instant", "smooth" };
1+
enum ScrollBehavior { "auto", "smooth" };
22

33
dictionary ScrollOptions {
44
ScrollBehavior behavior = "auto";
@@ -36,7 +36,9 @@ partial interface Window {
3636

3737
// client
3838
[Replaceable] readonly attribute long screenX;
39+
[Replaceable] readonly attribute long screenLeft;
3940
[Replaceable] readonly attribute long screenY;
41+
[Replaceable] readonly attribute long screenTop;
4042
[Replaceable] readonly attribute long outerWidth;
4143
[Replaceable] readonly attribute long outerHeight;
4244
[Replaceable] readonly attribute double devicePixelRatio;

inputfiles/idl/Compatibility.widl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ partial interface CSSStyleDeclaration {
6565
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTransitionTimingFunction;
6666
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTransition;
6767
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTextSizeAdjust;
68+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitAppearance;
6869
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxFlex;
6970
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxOrdinalGroup;
7071
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxAlign;

0 commit comments

Comments
 (0)