Skip to content

Commit 9fa086d

Browse files
author
copybara-service
committed
deploy: 07b9e0a
1 parent f3499b3 commit 9fa086d

154 files changed

Lines changed: 1368 additions & 1130 deletions

File tree

Some content is hidden

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

front_end/core/i18n/locales/en-US.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

front_end/core/i18n/locales/generated/collected-ui-strings.d

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

front_end/core/i18n/locales/generated/en-US.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,18 +1472,12 @@
14721472
"models/bindings/ContentProviderBasedProject.ts | unknownErrorLoadingFile": {
14731473
"message": "Unknown error loading file"
14741474
},
1475-
"models/bindings/DebuggerLanguagePlugins.ts | debugSymbolsIncomplete": {
1476-
"message": "The debug information for function {PH1} is incomplete"
1477-
},
14781475
"models/bindings/DebuggerLanguagePlugins.ts | errorInDebuggerLanguagePlugin": {
14791476
"message": "Error in debugger language plugin: {PH1}"
14801477
},
14811478
"models/bindings/DebuggerLanguagePlugins.ts | failedToLoadDebugSymbolsFor": {
14821479
"message": "[{PH1}] Failed to load debug symbols for {PH2} ({PH3})"
14831480
},
1484-
"models/bindings/DebuggerLanguagePlugins.ts | failedToLoadDebugSymbolsForFunction": {
1485-
"message": "No debug information for function \"{PH1}\""
1486-
},
14871481
"models/bindings/DebuggerLanguagePlugins.ts | loadedDebugSymbolsForButDidnt": {
14881482
"message": "[{PH1}] Loaded debug symbols for {PH2}, but didn't find any source files"
14891483
},
@@ -11075,9 +11069,6 @@
1107511069
"panels/network/RequestPayloadView.ts | requestPayload": {
1107611070
"message": "Request Payload"
1107711071
},
11078-
"panels/network/RequestPayloadView.ts | showMore": {
11079-
"message": "Show more"
11080-
},
1108111072
"panels/network/RequestPayloadView.ts | unableToDecodeValue": {
1108211073
"message": "(unable to decode value)"
1108311074
},
@@ -11342,6 +11333,9 @@
1134211333
"panels/network/ResourceWebSocketFrameView.ts | webSocketFrame": {
1134311334
"message": "Web Socket Frame"
1134411335
},
11336+
"panels/network/ShowMoreDetailsWidget.ts | showMore": {
11337+
"message": "Show more"
11338+
},
1134511339
"panels/network/SignedExchangeInfoView.ts | certificate": {
1134611340
"message": "Certificate"
1134711341
},
@@ -14111,6 +14105,12 @@
1411114105
"panels/sources/CallStackSidebarPane.ts | debugFileNotFound": {
1411214106
"message": "Failed to load debug file \"{PH1}\"."
1411314107
},
14108+
"panels/sources/CallStackSidebarPane.ts | debugSymbolsIncomplete": {
14109+
"message": "The debug information for function {PH1} is incomplete"
14110+
},
14111+
"panels/sources/CallStackSidebarPane.ts | failedToLoadDebugSymbolsForFunction": {
14112+
"message": "No debug information for function \"{PH1}\""
14113+
},
1411414114
"panels/sources/CallStackSidebarPane.ts | notPaused": {
1411514115
"message": "Not paused"
1411614116
},

front_end/core/sdk/DebuggerModel.d.ts

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,18 +178,26 @@ export interface MissingDebugFiles {
178178
resourceUrl: Platform.DevToolsPath.UrlString;
179179
initiator: PageResourceLoadInitiator;
180180
}
181-
export interface MissingDebugInfoDetails {
182-
details: string;
183-
resources: MissingDebugFiles[];
181+
export declare const enum MissingDebugInfoType {
182+
/** No debug information at all for the call frame */
183+
NO_INFO = "NO_INFO",
184+
/** Some debug information available, but it references files with debug information we were not able to retrieve */
185+
PARTIAL_INFO = "PARTIAL_INFO"
184186
}
187+
export type MissingDebugInfo = {
188+
type: MissingDebugInfoType.NO_INFO;
189+
} | {
190+
type: MissingDebugInfoType.PARTIAL_INFO;
191+
missingDebugFiles: MissingDebugFiles[];
192+
};
185193
export declare class CallFrame {
186194
#private;
187195
debuggerModel: DebuggerModel;
188196
readonly script: Script;
189197
payload: Protocol.Debugger.CallFrame;
190198
readonly inlineFrameIndex: number;
191199
readonly functionName: string;
192-
missingDebugInfoDetails: MissingDebugInfoDetails | null;
200+
missingDebugInfoDetails: MissingDebugInfo | null;
193201
readonly exception: RemoteObject | null;
194202
readonly canBeRestarted: boolean;
195203
constructor(debuggerModel: DebuggerModel, script: Script, payload: Protocol.Debugger.CallFrame, inlineFrameIndex?: number, functionName?: string, exception?: RemoteObject | null);

front_end/core/sdk/DebuggerModel.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/core/sdk/sdk.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ var generatedProperties = [
561561
"font-variation-settings",
562562
"font-weight",
563563
"forced-color-adjust",
564+
"frame-sizing",
564565
"gap-rule-overlap",
565566
"grid-auto-columns",
566567
"grid-auto-flow",
@@ -580,6 +581,7 @@ var generatedProperties = [
580581
"hyphenate-character",
581582
"hyphenate-limit-chars",
582583
"hyphens",
584+
"image-animation",
583585
"image-orientation",
584586
"image-rendering",
585587
"inherits",
@@ -2659,6 +2661,16 @@ var generatedProperties = [
26592661
],
26602662
"name": "forced-color-adjust"
26612663
},
2664+
{
2665+
"keywords": [
2666+
"auto",
2667+
"content-width",
2668+
"content-height",
2669+
"content-block-size",
2670+
"content-inline-size"
2671+
],
2672+
"name": "frame-sizing"
2673+
},
26622674
{
26632675
"longhands": [
26642676
"row-gap",
@@ -2841,6 +2853,15 @@ var generatedProperties = [
28412853
],
28422854
"name": "hyphens"
28432855
},
2856+
{
2857+
"inherited": true,
2858+
"keywords": [
2859+
"normal",
2860+
"running",
2861+
"paused"
2862+
],
2863+
"name": "image-animation"
2864+
},
28442865
{
28452866
"inherited": true,
28462867
"name": "image-orientation"
@@ -6096,6 +6117,15 @@ var generatedPropertyValues = {
60966117
"preserve-parent-color"
60976118
]
60986119
},
6120+
"frame-sizing": {
6121+
"values": [
6122+
"auto",
6123+
"content-width",
6124+
"content-height",
6125+
"content-block-size",
6126+
"content-inline-size"
6127+
]
6128+
},
60996129
"gap-rule-overlap": {
61006130
"values": [
61016131
"row-over-column",
@@ -6192,6 +6222,13 @@ var generatedPropertyValues = {
61926222
"auto"
61936223
]
61946224
},
6225+
"image-animation": {
6226+
"values": [
6227+
"normal",
6228+
"running",
6229+
"paused"
6230+
]
6231+
},
61956232
"image-rendering": {
61966233
"values": [
61976234
"auto",

front_end/core/sdk/sdk.js.map

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

front_end/generated/SupportedCSSProperties.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,9 @@ export const generatedPropertyValues: {
461461
"forced-color-adjust": {
462462
values: string[];
463463
};
464+
"frame-sizing": {
465+
values: string[];
466+
};
464467
"gap-rule-overlap": {
465468
values: string[];
466469
};
@@ -509,6 +512,9 @@ export const generatedPropertyValues: {
509512
hyphens: {
510513
values: string[];
511514
};
515+
"image-animation": {
516+
values: string[];
517+
};
512518
"image-rendering": {
513519
values: string[];
514520
};

front_end/generated/SupportedCSSProperties.js

Lines changed: 37 additions & 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.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.

0 commit comments

Comments
 (0)