feat(chromium): roll to v808777 (#3942)
This commit is contained in:
parent
ec26265359
commit
cd0a123e78
|
|
@ -1,6 +1,6 @@
|
||||||
# 🎭 Playwright
|
# 🎭 Playwright
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/playwright) [](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [](https://webkit.org/)
|
[](https://www.npmjs.com/package/playwright) [](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [](https://webkit.org/)
|
||||||
|
|
||||||
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/#?path=docs/api.md)
|
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/#?path=docs/api.md)
|
||||||
|
|
||||||
|
|
@ -8,7 +8,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/
|
||||||
|
|
||||||
| | Linux | macOS | Windows |
|
| | Linux | macOS | Windows |
|
||||||
| :--- | :---: | :---: | :---: |
|
| :--- | :---: | :---: | :---: |
|
||||||
| Chromium <!-- GEN:chromium-version -->86.0.4238.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Chromium <!-- GEN:chromium-version -->87.0.4271.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| WebKit 14.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| WebKit 14.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| Firefox <!-- GEN:firefox-version -->80.0b8<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Firefox <!-- GEN:firefox-version -->80.0b8<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"revision": "799411",
|
"revision": "808777",
|
||||||
"download": true
|
"download": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -992,10 +992,6 @@ See https://cs.chromium.org/chromium/src/third_party/blink/renderer/modules/perm
|
||||||
Note that userVisibleOnly = true is the only currently supported type.
|
Note that userVisibleOnly = true is the only currently supported type.
|
||||||
*/
|
*/
|
||||||
userVisibleOnly?: boolean;
|
userVisibleOnly?: boolean;
|
||||||
/**
|
|
||||||
* For "wake-lock" permission, must specify type as either "screen" or "system".
|
|
||||||
*/
|
|
||||||
type?: string;
|
|
||||||
/**
|
/**
|
||||||
* For "clipboard" permission, may specify allowWithoutSanitization.
|
* For "clipboard" permission, may specify allowWithoutSanitization.
|
||||||
*/
|
*/
|
||||||
|
|
@ -1408,10 +1404,14 @@ document.written STYLE tags.
|
||||||
/**
|
/**
|
||||||
* Whether this stylesheet is mutable. Inline stylesheets become mutable
|
* Whether this stylesheet is mutable. Inline stylesheets become mutable
|
||||||
after they have been modified via CSSOM API.
|
after they have been modified via CSSOM API.
|
||||||
<link> element's stylesheets are never mutable. Constructed stylesheets
|
<link> element's stylesheets become mutable only if DevTools modifies them.
|
||||||
(new CSSStyleSheet()) are mutable immediately after creation.
|
Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation.
|
||||||
*/
|
*/
|
||||||
isMutable: boolean;
|
isMutable: boolean;
|
||||||
|
/**
|
||||||
|
* Whether this stylesheet is a constructed stylesheet (created using new CSSStyleSheet()).
|
||||||
|
*/
|
||||||
|
isConstructed: boolean;
|
||||||
/**
|
/**
|
||||||
* Line offset of the stylesheet within the resource (zero based).
|
* Line offset of the stylesheet within the resource (zero based).
|
||||||
*/
|
*/
|
||||||
|
|
@ -7261,10 +7261,16 @@ https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-
|
||||||
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"UnsafeNone"|"SameOriginPlusCoep";
|
export type CrossOriginOpenerPolicyValue = "SameOrigin"|"SameOriginAllowPopups"|"UnsafeNone"|"SameOriginPlusCoep";
|
||||||
export interface CrossOriginOpenerPolicyStatus {
|
export interface CrossOriginOpenerPolicyStatus {
|
||||||
value: CrossOriginOpenerPolicyValue;
|
value: CrossOriginOpenerPolicyValue;
|
||||||
|
reportOnlyValue: CrossOriginOpenerPolicyValue;
|
||||||
|
reportingEndpoint?: string;
|
||||||
|
reportOnlyReportingEndpoint?: string;
|
||||||
}
|
}
|
||||||
export type CrossOriginEmbedderPolicyValue = "None"|"RequireCorp";
|
export type CrossOriginEmbedderPolicyValue = "None"|"RequireCorp";
|
||||||
export interface CrossOriginEmbedderPolicyStatus {
|
export interface CrossOriginEmbedderPolicyStatus {
|
||||||
value: CrossOriginEmbedderPolicyValue;
|
value: CrossOriginEmbedderPolicyValue;
|
||||||
|
reportOnlyValue: CrossOriginEmbedderPolicyValue;
|
||||||
|
reportingEndpoint?: string;
|
||||||
|
reportOnlyReportingEndpoint?: string;
|
||||||
}
|
}
|
||||||
export interface SecurityIsolationStatus {
|
export interface SecurityIsolationStatus {
|
||||||
coop: CrossOriginOpenerPolicyStatus;
|
coop: CrossOriginOpenerPolicyStatus;
|
||||||
|
|
@ -8151,6 +8157,17 @@ default domain and path values of the created cookie.
|
||||||
}
|
}
|
||||||
export type setExtraHTTPHeadersReturnValue = {
|
export type setExtraHTTPHeadersReturnValue = {
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Specifies whether to sned a debug header to all outgoing requests.
|
||||||
|
*/
|
||||||
|
export type setAttachDebugHeaderParameters = {
|
||||||
|
/**
|
||||||
|
* Whether to send a debug header.
|
||||||
|
*/
|
||||||
|
enabled: boolean;
|
||||||
|
}
|
||||||
|
export type setAttachDebugHeaderReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Sets the requests to intercept that match the provided patterns and optionally resource types.
|
* Sets the requests to intercept that match the provided patterns and optionally resource types.
|
||||||
Deprecated, please use Fetch.enable instead.
|
Deprecated, please use Fetch.enable instead.
|
||||||
|
|
@ -8298,6 +8315,10 @@ continueInterceptedRequest call.
|
||||||
* The named grid areas border color (Default: transparent).
|
* The named grid areas border color (Default: transparent).
|
||||||
*/
|
*/
|
||||||
areaBorderColor?: DOM.RGBA;
|
areaBorderColor?: DOM.RGBA;
|
||||||
|
/**
|
||||||
|
* The grid container background color (Default: transparent).
|
||||||
|
*/
|
||||||
|
gridBackgroundColor?: DOM.RGBA;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Configuration data for the highlighting of page elements.
|
* Configuration data for the highlighting of page elements.
|
||||||
|
|
@ -8779,6 +8800,14 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
||||||
* Indicates whether a frame has been identified as an ad.
|
* Indicates whether a frame has been identified as an ad.
|
||||||
*/
|
*/
|
||||||
export type AdFrameType = "none"|"child"|"root";
|
export type AdFrameType = "none"|"child"|"root";
|
||||||
|
/**
|
||||||
|
* Indicates whether the frame is a secure context and why it is the case.
|
||||||
|
*/
|
||||||
|
export type SecureContextType = "Secure"|"SecureLocalhost"|"InsecureScheme"|"InsecureAncestor";
|
||||||
|
/**
|
||||||
|
* Indicates whether the frame is cross-origin isolated and why it is the case.
|
||||||
|
*/
|
||||||
|
export type CrossOriginIsolatedContextType = "Isolated"|"NotIsolated"|"NotIsolatedFeatureDisabled";
|
||||||
/**
|
/**
|
||||||
* Information about the Frame on the page.
|
* Information about the Frame on the page.
|
||||||
*/
|
*/
|
||||||
|
|
@ -8830,6 +8859,14 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
||||||
* Indicates whether this frame was tagged as an ad.
|
* Indicates whether this frame was tagged as an ad.
|
||||||
*/
|
*/
|
||||||
adFrameType?: AdFrameType;
|
adFrameType?: AdFrameType;
|
||||||
|
/**
|
||||||
|
* Indicates whether the main document is a secure context and explains why that is the case.
|
||||||
|
*/
|
||||||
|
secureContextType: SecureContextType;
|
||||||
|
/**
|
||||||
|
* Indicates whether this is a cross origin isolated context.
|
||||||
|
*/
|
||||||
|
crossOriginIsolatedContextType: CrossOriginIsolatedContextType;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Information about the Resource on the page.
|
* Information about the Resource on the page.
|
||||||
|
|
@ -12194,7 +12231,7 @@ capacity and glitch may occur.
|
||||||
sampleRate: number;
|
sampleRate: number;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Protocol object for AudioListner
|
* Protocol object for AudioListener
|
||||||
*/
|
*/
|
||||||
export interface AudioListener {
|
export interface AudioListener {
|
||||||
listenerId: GraphObjectId;
|
listenerId: GraphObjectId;
|
||||||
|
|
@ -13965,6 +14002,23 @@ profile startTime.
|
||||||
*/
|
*/
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Runtime call counter information.
|
||||||
|
*/
|
||||||
|
export interface RuntimeCallCounterInfo {
|
||||||
|
/**
|
||||||
|
* Counter name.
|
||||||
|
*/
|
||||||
|
name: string;
|
||||||
|
/**
|
||||||
|
* Counter value.
|
||||||
|
*/
|
||||||
|
value: number;
|
||||||
|
/**
|
||||||
|
* Counter time in seconds.
|
||||||
|
*/
|
||||||
|
time: number;
|
||||||
|
}
|
||||||
|
|
||||||
export type consoleProfileFinishedPayload = {
|
export type consoleProfileFinishedPayload = {
|
||||||
id: string;
|
id: string;
|
||||||
|
|
@ -14130,6 +14184,31 @@ coverage needs to have started.
|
||||||
*/
|
*/
|
||||||
result: ScriptTypeProfile[];
|
result: ScriptTypeProfile[];
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Enable counters collection.
|
||||||
|
*/
|
||||||
|
export type enableCountersParameters = {
|
||||||
|
}
|
||||||
|
export type enableCountersReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Disable counters collection.
|
||||||
|
*/
|
||||||
|
export type disableCountersParameters = {
|
||||||
|
}
|
||||||
|
export type disableCountersReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Retrieve counters.
|
||||||
|
*/
|
||||||
|
export type getCountersParameters = {
|
||||||
|
}
|
||||||
|
export type getCountersReturnValue = {
|
||||||
|
/**
|
||||||
|
* Collected counters information.
|
||||||
|
*/
|
||||||
|
result: CounterInfo[];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Enable run time call stats collection.
|
* Enable run time call stats collection.
|
||||||
*/
|
*/
|
||||||
|
|
@ -14151,9 +14230,9 @@ coverage needs to have started.
|
||||||
}
|
}
|
||||||
export type getRuntimeCallStatsReturnValue = {
|
export type getRuntimeCallStatsReturnValue = {
|
||||||
/**
|
/**
|
||||||
* Collected counter information.
|
* Collected runtime call counter information.
|
||||||
*/
|
*/
|
||||||
result: CounterInfo[];
|
result: RuntimeCallCounterInfo[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -15520,6 +15599,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Network.setCookies": Network.setCookiesParameters;
|
"Network.setCookies": Network.setCookiesParameters;
|
||||||
"Network.setDataSizeLimitsForTest": Network.setDataSizeLimitsForTestParameters;
|
"Network.setDataSizeLimitsForTest": Network.setDataSizeLimitsForTestParameters;
|
||||||
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersParameters;
|
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersParameters;
|
||||||
|
"Network.setAttachDebugHeader": Network.setAttachDebugHeaderParameters;
|
||||||
"Network.setRequestInterception": Network.setRequestInterceptionParameters;
|
"Network.setRequestInterception": Network.setRequestInterceptionParameters;
|
||||||
"Network.setUserAgentOverride": Network.setUserAgentOverrideParameters;
|
"Network.setUserAgentOverride": Network.setUserAgentOverrideParameters;
|
||||||
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusParameters;
|
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusParameters;
|
||||||
|
|
@ -15738,6 +15818,9 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Profiler.stopTypeProfile": Profiler.stopTypeProfileParameters;
|
"Profiler.stopTypeProfile": Profiler.stopTypeProfileParameters;
|
||||||
"Profiler.takePreciseCoverage": Profiler.takePreciseCoverageParameters;
|
"Profiler.takePreciseCoverage": Profiler.takePreciseCoverageParameters;
|
||||||
"Profiler.takeTypeProfile": Profiler.takeTypeProfileParameters;
|
"Profiler.takeTypeProfile": Profiler.takeTypeProfileParameters;
|
||||||
|
"Profiler.enableCounters": Profiler.enableCountersParameters;
|
||||||
|
"Profiler.disableCounters": Profiler.disableCountersParameters;
|
||||||
|
"Profiler.getCounters": Profiler.getCountersParameters;
|
||||||
"Profiler.enableRuntimeCallStats": Profiler.enableRuntimeCallStatsParameters;
|
"Profiler.enableRuntimeCallStats": Profiler.enableRuntimeCallStatsParameters;
|
||||||
"Profiler.disableRuntimeCallStats": Profiler.disableRuntimeCallStatsParameters;
|
"Profiler.disableRuntimeCallStats": Profiler.disableRuntimeCallStatsParameters;
|
||||||
"Profiler.getRuntimeCallStats": Profiler.getRuntimeCallStatsParameters;
|
"Profiler.getRuntimeCallStats": Profiler.getRuntimeCallStatsParameters;
|
||||||
|
|
@ -16013,6 +16096,7 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Network.setCookies": Network.setCookiesReturnValue;
|
"Network.setCookies": Network.setCookiesReturnValue;
|
||||||
"Network.setDataSizeLimitsForTest": Network.setDataSizeLimitsForTestReturnValue;
|
"Network.setDataSizeLimitsForTest": Network.setDataSizeLimitsForTestReturnValue;
|
||||||
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersReturnValue;
|
"Network.setExtraHTTPHeaders": Network.setExtraHTTPHeadersReturnValue;
|
||||||
|
"Network.setAttachDebugHeader": Network.setAttachDebugHeaderReturnValue;
|
||||||
"Network.setRequestInterception": Network.setRequestInterceptionReturnValue;
|
"Network.setRequestInterception": Network.setRequestInterceptionReturnValue;
|
||||||
"Network.setUserAgentOverride": Network.setUserAgentOverrideReturnValue;
|
"Network.setUserAgentOverride": Network.setUserAgentOverrideReturnValue;
|
||||||
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusReturnValue;
|
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusReturnValue;
|
||||||
|
|
@ -16231,6 +16315,9 @@ unsubscribes current runtime agent from Runtime.bindingCalled notifications.
|
||||||
"Profiler.stopTypeProfile": Profiler.stopTypeProfileReturnValue;
|
"Profiler.stopTypeProfile": Profiler.stopTypeProfileReturnValue;
|
||||||
"Profiler.takePreciseCoverage": Profiler.takePreciseCoverageReturnValue;
|
"Profiler.takePreciseCoverage": Profiler.takePreciseCoverageReturnValue;
|
||||||
"Profiler.takeTypeProfile": Profiler.takeTypeProfileReturnValue;
|
"Profiler.takeTypeProfile": Profiler.takeTypeProfileReturnValue;
|
||||||
|
"Profiler.enableCounters": Profiler.enableCountersReturnValue;
|
||||||
|
"Profiler.disableCounters": Profiler.disableCountersReturnValue;
|
||||||
|
"Profiler.getCounters": Profiler.getCountersReturnValue;
|
||||||
"Profiler.enableRuntimeCallStats": Profiler.enableRuntimeCallStatsReturnValue;
|
"Profiler.enableRuntimeCallStats": Profiler.enableRuntimeCallStatsReturnValue;
|
||||||
"Profiler.disableRuntimeCallStats": Profiler.disableRuntimeCallStatsReturnValue;
|
"Profiler.disableRuntimeCallStats": Profiler.disableRuntimeCallStatsReturnValue;
|
||||||
"Profiler.getRuntimeCallStats": Profiler.getRuntimeCallStatsReturnValue;
|
"Profiler.getRuntimeCallStats": Profiler.getRuntimeCallStatsReturnValue;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue