Skip to content

Commit 67d4aec

Browse files
devtools-ci-autoroll-builderDevtools-frontend LUCI CQ
authored andcommitted
Roll puppeteer-core
This roll requires a manual review. See http://go/reviewed-rolls for guidance. In case of failures or errors, reach out to someone from config/owner/RECORDER_OWNERS. Roll created at https://cr-buildbucket.appspot.com/build/8732143955449609345 [email protected] No-Presubmit: True Bug: none Change-Id: I512fb2048f6233f33f474bef22d58b7ff20d629d Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5991074 Reviewed-by: Alex Rudenko <[email protected]> Reviewed-by: Kim-Anh Tran <[email protected]> Commit-Queue: Kim-Anh Tran <[email protected]>
1 parent 0c02fc8 commit 67d4aec

File tree

129 files changed

+1337
-528
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+1337
-528
lines changed

config/gni/devtools_grd_files.gni

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2090,6 +2090,7 @@ grd_files_debug_sources = [
20902090
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js",
20912091
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js",
20922092
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/encoding.js",
2093+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/incremental-id-generator.js",
20932094
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js",
20942095
"front_end/third_party/puppeteer/package/lib/esm/third_party/mitt/mitt.js",
20952096
"front_end/third_party/puppeteer/package/lib/esm/third_party/parsel-js/parsel-js.js",

front_end/third_party/puppeteer/BUILD.gn

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,8 @@ SOURCES = [
349349
"package/lib/esm/puppeteer/util/disposable.js",
350350
"package/lib/esm/puppeteer/util/encoding.d.ts",
351351
"package/lib/esm/puppeteer/util/encoding.js",
352+
"package/lib/esm/puppeteer/util/incremental-id-generator.d.ts",
353+
"package/lib/esm/puppeteer/util/incremental-id-generator.js",
352354
"package/lib/esm/puppeteer/util/util.d.ts",
353355
"package/lib/esm/puppeteer/util/util.js",
354356
"package/lib/esm/third_party/mitt/mitt.d.ts",

front_end/third_party/puppeteer/README.chromium

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Name: Puppeteer Core
22
Short Name: Puppeteer Core
33
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
4-
Version: 23.6.1
4+
Version: 23.7.0
55
License: Apache-2.0
66
License File: LICENSE
7-
Revision: 2b06f0a674d8b59f097609993e21cef4caa92e00
7+
Revision: eec80727b24c71d569d62b31fa327f150d23ca44
88
Security Critical: no
99
Shipped: yes
1010

front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,8 @@ export declare abstract class Browser extends EventEmitter<BrowserEvents> {
221221
* You can find the debugger URL (`webSocketDebuggerUrl`) from
222222
* `http://HOST:PORT/json/version`.
223223
*
224-
* See {@link
225-
* https://chromedevtools.github.io/devtools-protocol/#how-do-i-access-the-browser-target
226-
* | browser endpoint} for more information.
224+
* See {@link https://chromedevtools.github.io/devtools-protocol/#how-do-i-access-the-browser-target | browser endpoint}
225+
* for more information.
227226
*
228227
* @remarks The format is always `ws://HOST:PORT/devtools/browser/<id>`.
229228
*/

front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { Frame } from '../api/Frame.js';
88
import type { AwaitableIterable, ElementFor, EvaluateFuncWith, HandleFor, HandleOr, NodeFor } from '../common/types.js';
99
import type { KeyInput } from '../common/USKeyboardLayout.js';
1010
import { _isElementHandle } from './ElementHandleSymbol.js';
11-
import type { KeyboardTypeOptions, KeyPressOptions, MouseClickOptions } from './Input.js';
11+
import type { KeyboardTypeOptions, KeyPressOptions, MouseClickOptions, TouchHandle } from './Input.js';
1212
import { JSHandle } from './JSHandle.js';
1313
import type { QueryOptions, ScreenshotOptions, WaitForSelectorOptions } from './Page.js';
1414
/**
@@ -494,8 +494,19 @@ export declare abstract class ElementHandle<ElementType extends Node = Element>
494494
* If the element is detached from DOM, the method throws an error.
495495
*/
496496
tap(this: ElementHandle<Element>): Promise<void>;
497-
touchStart(this: ElementHandle<Element>): Promise<void>;
498-
touchMove(this: ElementHandle<Element>): Promise<void>;
497+
/**
498+
* This method scrolls the element into view if needed, and then
499+
* starts a touch in the center of the element.
500+
* @returns A {@link TouchHandle} representing the touch that was started
501+
*/
502+
touchStart(this: ElementHandle<Element>): Promise<TouchHandle>;
503+
/**
504+
* This method scrolls the element into view if needed, and then
505+
* moves the touch to the center of the element.
506+
* @param touch - An optional {@link TouchHandle}. If provided, this touch
507+
* will be moved. If not provided, the first active touch will be moved.
508+
*/
509+
touchMove(this: ElementHandle<Element>, touch?: TouchHandle): Promise<void>;
499510
touchEnd(this: ElementHandle<Element>): Promise<void>;
500511
/**
501512
* Calls {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus | focus} on the element.

0 commit comments

Comments
 (0)