File tree Expand file tree Collapse file tree 5 files changed +14
-9
lines changed Expand file tree Collapse file tree 5 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -2698,7 +2698,8 @@ interface CSSStyleDeclaration {
2698
2698
webkitAnimationPlayState: string;
2699
2699
/** @deprecated */
2700
2700
webkitAnimationTimingFunction: string;
2701
- webkitAppearance: string | null;
2701
+ /** @deprecated */
2702
+ webkitAppearance: string;
2702
2703
/** @deprecated */
2703
2704
webkitBackfaceVisibility: string;
2704
2705
/** @deprecated */
@@ -17813,7 +17814,7 @@ type RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";
17813
17814
type RequestRedirect = "follow" | "error" | "manual";
17814
17815
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
17815
17816
type ScopedCredentialType = "ScopedCred";
17816
- type ScrollBehavior = "auto" | "instant" | " smooth";
17817
+ type ScrollBehavior = "auto" | "smooth";
17817
17818
type ScrollLogicalPosition = "start" | "center" | "end" | "nearest";
17818
17819
type ScrollRestoration = "auto" | "manual";
17819
17820
type ScrollSetting = "" | "up";
Original file line number Diff line number Diff line change 2
2
Constructor(CSSOMString type, optional AnimationEventInit animationEventInitDict)]
3
3
interface AnimationEvent : Event {
4
4
readonly attribute CSSOMString animationName;
5
- readonly attribute float elapsedTime;
5
+ readonly attribute double elapsedTime;
6
6
readonly attribute CSSOMString pseudoElement;
7
7
};
8
8
dictionary AnimationEventInit : EventInit {
9
9
CSSOMString animationName = "";
10
- float elapsedTime = 0.0;
10
+ double elapsedTime = 0.0;
11
11
CSSOMString pseudoElement = "";
12
12
};
13
13
@@ -32,7 +32,7 @@ interface CSSKeyframesRule : CSSRule {
32
32
CSSKeyframeRule? findRule(CSSOMString select);
33
33
};
34
34
35
- partial interface GlobalEventHandlers {
35
+ partial interface mixin GlobalEventHandlers {
36
36
attribute EventHandler onanimationstart;
37
37
attribute EventHandler onanimationiteration;
38
38
attribute EventHandler onanimationend;
Original file line number Diff line number Diff line change 1
- [Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
1
+ [Exposed=Window,
2
+ Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
2
3
interface TransitionEvent : Event {
3
4
readonly attribute CSSOMString propertyName;
4
- readonly attribute float elapsedTime;
5
+ readonly attribute double elapsedTime;
5
6
readonly attribute CSSOMString pseudoElement;
6
7
};
7
8
8
9
dictionary TransitionEventInit : EventInit {
9
10
CSSOMString propertyName = "";
10
- float elapsedTime = 0.0;
11
+ double elapsedTime = 0.0;
11
12
CSSOMString pseudoElement = "";
12
13
};
13
14
Original file line number Diff line number Diff line change 1
- enum ScrollBehavior { "auto", "instant", " smooth" };
1
+ enum ScrollBehavior { "auto", "smooth" };
2
2
3
3
dictionary ScrollOptions {
4
4
ScrollBehavior behavior = "auto";
@@ -36,7 +36,9 @@ partial interface Window {
36
36
37
37
// client
38
38
[Replaceable] readonly attribute long screenX;
39
+ [Replaceable] readonly attribute long screenLeft;
39
40
[Replaceable] readonly attribute long screenY;
41
+ [Replaceable] readonly attribute long screenTop;
40
42
[Replaceable] readonly attribute long outerWidth;
41
43
[Replaceable] readonly attribute long outerHeight;
42
44
[Replaceable] readonly attribute double devicePixelRatio;
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ partial interface CSSStyleDeclaration {
65
65
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTransitionTimingFunction;
66
66
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTransition;
67
67
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitTextSizeAdjust;
68
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitAppearance;
68
69
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxFlex;
69
70
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxOrdinalGroup;
70
71
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitBoxAlign;
You can’t perform that action at this time.
0 commit comments