Skip to content

Commit 6bdda5f

Browse files
authored
1 parent 5ef87b1 commit 6bdda5f

File tree

4 files changed

+110
-107
lines changed

4 files changed

+110
-107
lines changed

baselines/dom.generated.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2600,6 +2600,7 @@ declare var CSSRuleList: {
26002600

26012601
/** An object that is a CSS declaration block, and exposes style information and various style-related methods and properties. */
26022602
interface CSSStyleDeclaration {
2603+
accentColor: string;
26032604
alignContent: string;
26042605
alignItems: string;
26052606
alignSelf: string;
@@ -7523,6 +7524,7 @@ declare var HTMLSelectElement: {
75237524

75247525
interface HTMLSlotElement extends HTMLElement {
75257526
name: string;
7527+
assign(...nodes: (Element | Text)[]): void;
75267528
assignedElements(options?: AssignedNodesOptions): Element[];
75277529
assignedNodes(options?: AssignedNodesOptions): Node[];
75287530
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSlotElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -9451,6 +9453,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorConcurrentH
94519453
readonly mediaSession: MediaSession;
94529454
readonly permissions: Permissions;
94539455
readonly serviceWorker: ServiceWorkerContainer;
9456+
canShare(data?: ShareData): boolean;
94549457
getGamepads(): (Gamepad | null)[];
94559458
requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise<MediaKeySystemAccess>;
94569459
sendBeacon(url: string | URL, data?: BodyInit | null): boolean;

0 commit comments

Comments
 (0)