Skip to content

Commit 582c08b

Browse files
devtools-ci-autoroll-builderDevtools-frontend LUCI CQ
authored andcommitted
Roll browser-protocol
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/COMMON_OWNERS. Roll created at https://cr-buildbucket.appspot.com/build/8712812828080985681 R=devtools-waterfall-sheriff-onduty@rotations.google.com Bug: none Change-Id: I9763f71c6fa1dfcb496af84b1e34e67911bd2ba4 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6624538 Commit-Queue: Connor Clark <cjamcl@chromium.org> Reviewed-by: Connor Clark <cjamcl@chromium.org> Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
1 parent e9953f0 commit 582c08b

File tree

9 files changed

+40
-5
lines changed

9 files changed

+40
-5
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ vars = {
2424
'inspector_protocol_revision': '6d1ae0f13aae6ad381ca31b17b88a0f5af29ca94',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : '26cbea720b9742a07237e7129eaadad0e8ba70e4',
27+
'chromium_browser_protocol_revision' : 'd2038f87e77355d9568c6446169e2e3f07197ee8',
2828

2929
'clang_format_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git',
3030
'clang_format_revision': '37f6e68a107df43b7d7e044fd36a13cbae3413f2',

front_end/generated/InspectorBackendCommands.js

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

front_end/generated/SupportedCSSProperties.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,8 @@ export const generatedProperties = [
18051805
"style",
18061806
"paint",
18071807
"inline-size",
1808-
"block-size"
1808+
"block-size",
1809+
"view-transition"
18091810
],
18101811
"name": "contain"
18111812
},
@@ -5272,7 +5273,8 @@ export const generatedPropertyValues = {
52725273
"style",
52735274
"paint",
52745275
"inline-size",
5275-
"block-size"
5276+
"block-size",
5277+
"view-transition"
52765278
]
52775279
},
52785280
"contain-intrinsic-height": {

front_end/generated/protocol-mapping.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2349,6 +2349,13 @@ export namespace ProtocolMapping {
23492349
paramsType: [Protocol.Emulation.SetEmulatedVisionDeficiencyRequest];
23502350
returnType: void;
23512351
};
2352+
/**
2353+
* Emulates the given OS text scale.
2354+
*/
2355+
'Emulation.setEmulatedOSTextScale': {
2356+
paramsType: [Protocol.Emulation.SetEmulatedOSTextScaleRequest?];
2357+
returnType: void;
2358+
};
23522359
/**
23532360
* Overrides the Geolocation Position or Error. Omitting latitude, longitude or
23542361
* accuracy emulates position unavailable.

front_end/generated/protocol-proxy-api.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1577,6 +1577,11 @@ declare namespace ProtocolProxyApi {
15771577
*/
15781578
invoke_setEmulatedVisionDeficiency(params: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest): Promise<Protocol.ProtocolResponseWithError>;
15791579

1580+
/**
1581+
* Emulates the given OS text scale.
1582+
*/
1583+
invoke_setEmulatedOSTextScale(params: Protocol.Emulation.SetEmulatedOSTextScaleRequest): Promise<Protocol.ProtocolResponseWithError>;
1584+
15801585
/**
15811586
* Overrides the Geolocation Position or Error. Omitting latitude, longitude or
15821587
* accuracy emulates position unavailable.

front_end/generated/protocol.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6645,6 +6645,10 @@ export namespace Emulation {
66456645
type: SetEmulatedVisionDeficiencyRequestType;
66466646
}
66476647

6648+
export interface SetEmulatedOSTextScaleRequest {
6649+
scale?: number;
6650+
}
6651+
66486652
export interface SetGeolocationOverrideRequest {
66496653
/**
66506654
* Mock latitude

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10151,6 +10151,17 @@
1015110151
}
1015210152
]
1015310153
},
10154+
{
10155+
"name": "setEmulatedOSTextScale",
10156+
"description": "Emulates the given OS text scale.",
10157+
"parameters": [
10158+
{
10159+
"name": "scale",
10160+
"optional": true,
10161+
"type": "number"
10162+
}
10163+
]
10164+
},
1015410165
{
1015510166
"name": "setGeolocationOverride",
1015610167
"description": "Overrides the Geolocation Position or Error. Omitting latitude, longitude or\naccuracy emulates position unavailable.",

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4700,6 +4700,11 @@ domain Emulation
47004700
protanopia
47014701
tritanopia
47024702

4703+
# Emulates the given OS text scale.
4704+
command setEmulatedOSTextScale
4705+
parameters
4706+
optional number scale
4707+
47034708
# Overrides the Geolocation Position or Error. Omitting latitude, longitude or
47044709
# accuracy emulates position unavailable.
47054710
command setGeolocationOverride

third_party/blink/renderer/core/css/css_properties.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2878,13 +2878,13 @@
28782878
name: "contain",
28792879
property_methods: ["ParseSingleValue", "CSSValueFromComputedStyleInternal"],
28802880
field_group: "*",
2881-
field_size: 5,
2881+
field_size: 6,
28822882
field_template: "primitive",
28832883
default_value: "kContainsNone",
28842884
name_for_methods: "Contain",
28852885
type_name: "unsigned",
28862886
converter: "ConvertFlags<Containment>",
2887-
keywords: ["none", "strict", "content", "size", "layout", "style", "paint", "inline-size", "block-size"],
2887+
keywords: ["none", "strict", "content", "size", "layout", "style", "paint", "inline-size", "block-size", "view-transition"],
28882888
typedom_types: ["Keyword"],
28892889
computable: false,
28902890
valid_for_permission_element: true,

0 commit comments

Comments
 (0)