From 2ea28c9732a690105bcc37754ed4517808ca144f Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:31:40 -0700 Subject: [PATCH] feat(webkit): roll to r1915 (#27443) Signed-off-by: Max Schmitt Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Max Schmitt --- packages/playwright-core/browsers.json | 2 +- .../src/server/webkit/protocol.d.ts | 26 ++++++++----------- .../src/server/webkit/wkAccessibility.ts | 1 - 3 files changed, 12 insertions(+), 17 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 8f3a94a940..fe7737d413 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -39,7 +39,7 @@ }, { "name": "webkit", - "revision": "1914", + "revision": "1915", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/packages/playwright-core/src/server/webkit/protocol.d.ts b/packages/playwright-core/src/server/webkit/protocol.d.ts index 60d9c80db3..a37b9f185c 100644 --- a/packages/playwright-core/src/server/webkit/protocol.d.ts +++ b/packages/playwright-core/src/server/webkit/protocol.d.ts @@ -907,7 +907,7 @@ export module Protocol { */ export interface FontVariationAxis { /** - * The name, generally human-readable, of the variation axis. Some axes may not provide a human-readable name distinguishable from the tag. This field is omitted when there is no name, or the name matches the tag exactly. + * The name, generally human-readable, of the variation axis. Some axes may not provide a human-readable name distiguishable from the tag. This field is ommited when there is no name, or the name matches the tag exactly. */ name?: string; /** @@ -1209,7 +1209,7 @@ export module Protocol { export type forcePseudoStateReturnValue = { } /** - * Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet received, those nodes will be sent to the frontend immediately. + * Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet recieved, those nodes will be sent to the frontend immediately. */ export type setLayoutContextTypeChangedModeParameters = { /** @@ -1908,7 +1908,7 @@ export module Protocol { */ binding: string; /** - * A more descriptive name for the type of binding that represents this particular data relationship + * A more descriptive name for the type of binding that represents this paritcular data relationship */ type?: string; /** @@ -6315,7 +6315,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ export type Setting = "PrivateClickMeasurementDebugModeEnabled"|"AuthorAndUserStylesEnabled"|"ICECandidateFilteringEnabled"|"ITPDebugModeEnabled"|"ImagesEnabled"|"MediaCaptureRequiresSecureConnection"|"MockCaptureDevicesEnabled"|"NeedsSiteSpecificQuirks"|"ScriptEnabled"|"ShowDebugBorders"|"ShowRepaintCounter"|"WebSecurityEnabled"|"DeviceOrientationEventEnabled"|"SpeechRecognitionEnabled"|"PointerLockEnabled"|"NotificationsEnabled"|"FullScreenEnabled"|"InputTypeMonthEnabled"|"InputTypeWeekEnabled"; /** - * A user preference that can be overridden by Web Inspector, like an accessibility preference. + * A user preference that can be overriden by Web Inspector, like an accessibility preference. */ export interface UserPreference { /** @@ -6541,10 +6541,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the * Whether the node is modal. */ modal?: boolean; - /** - * Whether the node text input supports multiline. - */ - multiline?: boolean; /** * Whether more than one child can be selected. */ @@ -6606,7 +6602,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ children?: AXNode[]; /** - * True if this AXNode corresponds with the ObjectId passed into accessibilitySnapshot. + * True if this AXNode corresponds with the ObjectId passed into acessibilitySnapshot. */ found?: boolean; } @@ -6693,7 +6689,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ delay: number; /** - * Whether the navigation will happen in the same frame. + * Whether the naviation will happen in the same frame. */ targetIsCurrentFrame: boolean; } @@ -6724,7 +6720,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ export type defaultUserPreferencesDidChangePayload = { /** - * List of user preferences that can be overridden and their new system (default) values. + * List of user preferences that can be overriden and their new system (default) values. */ preferences: UserPreference[]; } @@ -7501,7 +7497,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the browserContextId: ContextID; } /** - * Deletes browser context previously created with createContext. The command will automatically close all pages that use the context. + * Deletes browser context previously created with createContect. The command will automatically close all pages that use the context. */ export type deleteContextParameters = { /** @@ -7768,7 +7764,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the version: number; type: Type; /** - * JSON data of initial state of object before recording. + * JSON data of inital state of object before recording. */ initialState: InitialState; /** @@ -8108,7 +8104,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the */ export interface TypeDescription { /** - * If true, we were able to correlate the offset successfully with a program location. If false, the offset may be bogus or the offset may be from a CodeBlock that hasn't executed. + * If true, we were able to correlate the offset successfuly with a program location. If false, the offset may be bogus or the offset may be from a CodeBlock that hasn't executed. */ isValid: boolean; /** @@ -8606,7 +8602,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the } /** - * Starts recording video to specified file. + * Starts recoring video to speified file. */ export type startVideoParameters = { /** diff --git a/packages/playwright-core/src/server/webkit/wkAccessibility.ts b/packages/playwright-core/src/server/webkit/wkAccessibility.ts index a19fdde504..80c855ea7b 100644 --- a/packages/playwright-core/src/server/webkit/wkAccessibility.ts +++ b/packages/playwright-core/src/server/webkit/wkAccessibility.ts @@ -210,7 +210,6 @@ class WKAXNode implements accessibility.AXNode { 'expanded', 'focused', 'modal', - 'multiline', 'multiselectable', 'readonly', 'required',