豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit b138639

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/8692824873201808257 R=chrome-devtools-waterfall-gardener-emea-oncall@google.com Bug: none Change-Id: I26ab307235c25294e7f18196c1caebcec7f2cfd6 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7456109 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Reviewed-by: Simon Zünd <szuend@chromium.org> Commit-Queue: Simon Zünd <szuend@chromium.org>
1 parent 45975b8 commit b138639

File tree

8 files changed

+42
-91
lines changed

8 files changed

+42
-91
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': '39acff851716ef40aaa0312ce0d359e37ef0d467',
2525

2626
# Keeping track of the last time we rolled the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'c369266b4fc572e6f209890d30be0b6a3d0ab330',
27+
'chromium_browser_protocol_revision' : '5dd7406e2cf875f110274e22c3bd287d32086055',
2828

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

front_end/generated/Deprecation.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,6 @@ export const UIStrings = {
242242
* @description Warning displayed to developers. It is shown when the `XMLHttpRequest` API is used in a way that it slows down the page load of the next page. The `main thread` refers to an operating systems thread used to run most of the processing of HTML documents, so please use a consistent wording.
243243
*/
244244
XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload: "Synchronous `XMLHttpRequest` on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.",
245-
/**
246-
* @description Warning displayed to developers that they are using externally loaded entities in an XML document that constitutes a part of the web page. Externally loaded entities are a technical concept of XML document processing.
247-
*/
248-
XMLNoExternalEntities: "Externally loaded entities in XML parsing have been deprecated and will be removed from this browser soon.",
249245
/**
250246
* @description Warning displayed to developers that they are using either the XSLTProcessor API, or XSLT processing instructions, both of which have been deprecated and are scheduled to be removed.
251247
*/
@@ -374,10 +370,6 @@ export const DEPRECATIONS_METADATA: Partial<Record<string, DeprecationDescriptor
374370
"XHRJSONEncodingDetection": {
375371
"milestone": 93
376372
},
377-
"XMLNoExternalEntities": {
378-
"chromeStatusFeature": 6734457763659776,
379-
"milestone": 144
380-
},
381373
"XSLT": {
382374
"chromeStatusFeature": 4709671889534976,
383375
"milestone": 143

front_end/generated/SupportedCSSProperties.js

Lines changed: 18 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,7 @@ export const generatedProperties = [
505505
"grid-column-end",
506506
"grid-column-start",
507507
"grid-lanes-direction",
508+
"grid-lanes-pack",
508509
"grid-row-end",
509510
"grid-row-start",
510511
"grid-template-areas",
@@ -603,12 +604,10 @@ export const generatedProperties = [
603604
"overflow-y",
604605
"overlay",
605606
"override-colors",
606-
"overscroll-area",
607607
"overscroll-behavior-block",
608608
"overscroll-behavior-inline",
609609
"overscroll-behavior-x",
610610
"overscroll-behavior-y",
611-
"overscroll-position",
612611
"pad",
613612
"padding-block-end",
614613
"padding-block-start",
@@ -2682,12 +2681,19 @@ export const generatedProperties = [
26822681
"keywords": [
26832682
"normal",
26842683
"row",
2685-
"row-reverse",
26862684
"column",
2687-
"column-reverse"
2685+
"fill-reverse",
2686+
"track-reverse"
26882687
],
26892688
"name": "grid-lanes-direction"
26902689
},
2690+
{
2691+
"keywords": [
2692+
"normal",
2693+
"dense"
2694+
],
2695+
"name": "grid-lanes-pack"
2696+
},
26912697
{
26922698
"longhands": [
26932699
"grid-row-start",
@@ -3414,12 +3420,6 @@ export const generatedProperties = [
34143420
{
34153421
"name": "override-colors"
34163422
},
3417-
{
3418-
"keywords": [
3419-
"none"
3420-
],
3421-
"name": "overscroll-area"
3422-
},
34233423
{
34243424
"longhands": [
34253425
"overscroll-behavior-x",
@@ -3449,12 +3449,6 @@ export const generatedProperties = [
34493449
],
34503450
"name": "overscroll-behavior-y"
34513451
},
3452-
{
3453-
"keywords": [
3454-
"none"
3455-
],
3456-
"name": "overscroll-position"
3457-
},
34583452
{
34593453
"name": "pad"
34603454
},
@@ -6067,9 +6061,15 @@ export const generatedPropertyValues = {
60676061
"values": [
60686062
"normal",
60696063
"row",
6070-
"row-reverse",
60716064
"column",
6072-
"column-reverse"
6065+
"fill-reverse",
6066+
"track-reverse"
6067+
]
6068+
},
6069+
"grid-lanes-pack": {
6070+
"values": [
6071+
"normal",
6072+
"dense"
60736073
]
60746074
},
60756075
"grid-row-end": {
@@ -6463,11 +6463,6 @@ export const generatedPropertyValues = {
64636463
"auto"
64646464
]
64656465
},
6466-
"overscroll-area": {
6467-
"values": [
6468-
"none"
6469-
]
6470-
},
64716466
"overscroll-behavior-x": {
64726467
"values": [
64736468
"auto",
@@ -6482,11 +6477,6 @@ export const generatedPropertyValues = {
64826477
"none"
64836478
]
64846479
},
6485-
"overscroll-position": {
6486-
"values": [
6487-
"none"
6488-
]
6489-
},
64906480
"page": {
64916481
"values": [
64926482
"auto"

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export const NativeFunctions = [
170170
{
171171
name: "set",
172172
signatures: [["key","value"]],
173-
receivers: ["Map","WeakMap","CrashReportStorage"]
173+
receivers: ["Map","WeakMap","CrashReportContext"]
174174
},
175175
{
176176
name: "set",
@@ -1575,7 +1575,7 @@ export const NativeFunctions = [
15751575
{
15761576
name: "delete",
15771577
signatures: [["key"]],
1578-
receivers: ["Map","WeakMap"]
1578+
receivers: ["Map","WeakMap","CrashReportContext"]
15791579
},
15801580
{
15811581
name: "delete",
@@ -1998,11 +1998,6 @@ export const NativeFunctions = [
19981998
signatures: [["start","end"]],
19991999
receivers: ["SourceBuffer"]
20002000
},
2001-
{
2002-
name: "remove",
2003-
signatures: [["key"]],
2004-
receivers: ["CrashReportStorage"]
2005-
},
20062001
{
20072002
name: "remove",
20082003
signatures: [["?options"]],
@@ -3863,7 +3858,7 @@ export const NativeFunctions = [
38633858
{
38643859
name: "initialize",
38653860
signatures: [["length"]],
3866-
receivers: ["CrashReportStorage"]
3861+
receivers: ["CrashReportContext"]
38673862
},
38683863
{
38693864
name: "initialize",

front_end/third_party/chromium/README.chromium

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Name: Dependencies sourced from the upstream `chromium` repository
22
URL: https://chromium.googlesource.com/chromium/src
33
Version: N/A
4-
Revision: c369266b4fc572e6f209890d30be0b6a3d0ab330
4+
Revision: 5dd7406e2cf875f110274e22c3bd287d32086055
55
Update Mechanism: Manual (https://crbug.com/428069060)
66
License: BSD-3-Clause
77
License File: LICENSE

front_end/ui/visual_logging/KnownContextValues.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,6 +1777,7 @@ export const knownContextValues = new Set([
17771777
'grid-lanes-direction',
17781778
'grid-lanes-fill',
17791779
'grid-lanes-flow',
1780+
'grid-lanes-pack',
17801781
'grid-overlays',
17811782
'grid-row',
17821783
'grid-row-end',

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

Lines changed: 18 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -3509,11 +3509,26 @@
35093509
},
35103510
{
35113511
name: "grid-lanes-direction",
3512+
property_methods: ["ParseSingleValue", "CSSValueFromComputedStyleInternal"],
3513+
field_group: "*",
3514+
field_template: "external",
3515+
include_paths: ["third_party/blink/renderer/core/layout/grid_lanes/grid_lanes_direction.h"],
3516+
default_value: "GridLanesDirection()",
3517+
type_name: "GridLanesDirection",
3518+
converter: "ConvertGridLanesDirection",
3519+
getter: "GetGridLanesDirection",
3520+
typedom_types: ["Keyword"],
3521+
keywords: ["normal", "row", "column", "fill-reverse", "track-reverse"],
3522+
invalidate: ["layout", "paint"],
3523+
runtime_flag: "CSSGridLanesLayout",
3524+
},
3525+
{
3526+
name: "grid-lanes-pack",
35123527
property_methods: ["CSSValueFromComputedStyleInternal"],
35133528
field_group: "*",
35143529
field_template: "keyword",
35153530
typedom_types: ["Keyword"],
3516-
keywords: ["normal", "row", "row-reverse", "column", "column-reverse"],
3531+
keywords: ["normal", "dense"],
35173532
default_value: "normal",
35183533
invalidate: ["layout", "paint"],
35193534
runtime_flag: "CSSGridLanesLayout",
@@ -4572,22 +4587,6 @@
45724587
idempotent: false,
45734588
invalidate: ["layout", "paint"],
45744589
},
4575-
{
4576-
name: "overscroll-area",
4577-
property_methods: ["ParseSingleValue", "CSSValueFromComputedStyleInternal" ],
4578-
include_paths: ["third_party/blink/renderer/core/style/scoped_css_name.h"],
4579-
type_name: "ScopedCSSNameList",
4580-
wrapper_pointer_name: "Member",
4581-
default_value: "nullptr",
4582-
field_group: "*",
4583-
field_template: "external",
4584-
converter: "ConvertOverscrollArea",
4585-
keywords: ["none"],
4586-
typedom_types: ["Keyword"],
4587-
valid_for_permission_element: true,
4588-
invalidate: ["layout"],
4589-
runtime_flag: "CSSOverscrollGestures",
4590-
},
45914590
{
45924591
name: "-internal-overscroll-area",
45934592
property_methods: ["CSSValueFromComputedStyleInternal"],
@@ -4596,7 +4595,7 @@
45964595
keywords: ["none", "auto"],
45974596
typedom_types: ["Keyword"],
45984597
default_value: "none",
4599-
runtime_flag: "CSSOverscrollGestures",
4598+
runtime_flag: "OverscrollGestures",
46004599
},
46014600
{
46024601
name: "overscroll-behavior-inline",
@@ -4646,22 +4645,6 @@
46464645
computable: false,
46474646
valid_for_permission_element: true,
46484647
},
4649-
{
4650-
name: "overscroll-position",
4651-
property_methods: ["ParseSingleValue", "CSSValueFromComputedStyleInternal" ],
4652-
include_paths: ["third_party/blink/renderer/core/style/scoped_css_name.h"],
4653-
type_name: "ScopedCSSName",
4654-
wrapper_pointer_name: "Member",
4655-
default_value: "nullptr",
4656-
field_group: "*",
4657-
field_template: "external",
4658-
converter: "ConvertOverscrollPosition",
4659-
keywords: ["none"],
4660-
typedom_types: ["Keyword"],
4661-
valid_for_permission_element: true,
4662-
invalidate: ["layout", "paint"],
4663-
runtime_flag: "CSSOverscrollGestures",
4664-
},
46654648
{
46664649
name: "-internal-overscroll-position",
46674650
property_methods: ["CSSValueFromComputedStyleInternal"],
@@ -4670,7 +4653,7 @@
46704653
keywords: ["none", "auto"],
46714654
typedom_types: ["Keyword"],
46724655
default_value: "none",
4673-
runtime_flag: "CSSOverscrollGestures",
4656+
runtime_flag: "OverscrollGestures",
46744657
},
46754658
{
46764659
name: "padding-bottom",

third_party/blink/renderer/core/frame/deprecation/deprecation.json5

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -591,16 +591,6 @@
591591
"kXMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload",
592592
],
593593
},
594-
{
595-
name: "XMLNoExternalEntities",
596-
message: "Externally loaded entities in XML parsing have been deprecated and will be removed from this browser soon.",
597-
translation_note: "Warning displayed to developers that they are using externally loaded entities in an XML document that constitutes a part of the web page. Externally loaded entities are a technical concept of XML document processing.",
598-
web_features: [
599-
"kXMLExternalResourceLoadEntitiesOnly",
600-
],
601-
chrome_status_feature: 6734457763659776,
602-
milestone: 144,
603-
},
604594
{
605595
name: "XSLT",
606596
message: "XSLTProcessor and XSLT Processing Instructions have been deprecated by all browsers. These features will be removed from this browser soon.",

0 commit comments

Comments
 (0)