Skip to content

Commit 8c8d9a5

Browse files
author
copybara-service
committed
deploy: ddb2fb6
1 parent 5c8c780 commit 8c8d9a5

File tree

96 files changed

+741
-519
lines changed

Some content is hidden

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

96 files changed

+741
-519
lines changed

front_end/Images/lock-person.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

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/root/Runtime.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ export interface HostConfigThirdPartyCookieControls {
190190
thirdPartyCookieHeuristicsEnabled: boolean;
191191
managedBlockThirdPartyCookies: string | boolean;
192192
}
193+
export interface HostConfigAiAssistanceV2 {
194+
enabled: boolean;
195+
}
193196
interface AiGeneratedTimelineLabels {
194197
enabled: boolean;
195198
}
@@ -263,6 +266,7 @@ export type HostConfig = Platform.TypeScriptUtilities.RecursivePartial<{
263266
devToolsAiAssistanceNetworkAgent: HostConfigAiAssistanceNetworkAgent;
264267
devToolsAiAssistanceFileAgent: HostConfigAiAssistanceFileAgent;
265268
devToolsAiAssistancePerformanceAgent: HostConfigAiAssistancePerformanceAgent;
269+
devToolsAiAssistanceV2: HostConfigAiAssistanceV2;
266270
devToolsAiCodeCompletion: HostConfigAiCodeCompletion;
267271
devToolsAiCodeGeneration: HostConfigAiCodeGeneration;
268272
devToolsVeLogging: HostConfigVeLogging;

front_end/core/root/Runtime.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/root/root.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/core/sdk/CSSPropertyParserMatchers.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,10 @@ export declare const enum SelectFunction {
402402
export declare const enum ArithmeticFunction {
403403
CALC = "calc",
404404
SIBLING_COUNT = "sibling-count",
405-
SIBLING_INDEX = "sibling-index"
405+
SIBLING_INDEX = "sibling-index",
406+
ROUND = "round",
407+
MOD = "mod",
408+
REM = "rem"
406409
}
407410
type MathFunction = SelectFunction | ArithmeticFunction;
408411
export declare class BaseFunctionMatch<T extends string> implements Match {

front_end/core/sdk/CSSPropertyParserMatchers.js

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

front_end/core/sdk/CSSPropertyParserMatchers.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: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,8 +1855,7 @@ var generatedProperties = [
18551855
"keywords": [
18561856
"all",
18571857
"around",
1858-
"between",
1859-
"none"
1858+
"between"
18601859
],
18611860
"name": "column-rule-visibility-items"
18621861
},
@@ -3887,8 +3886,7 @@ var generatedProperties = [
38873886
"keywords": [
38883887
"all",
38893888
"around",
3890-
"between",
3891-
"none"
3889+
"between"
38923890
],
38933891
"name": "row-rule-visibility-items"
38943892
},
@@ -5583,8 +5581,7 @@ var generatedPropertyValues = {
55835581
"values": [
55845582
"all",
55855583
"around",
5586-
"between",
5587-
"none"
5584+
"between"
55885585
]
55895586
},
55905587
"column-rule-width": {
@@ -6707,8 +6704,7 @@ var generatedPropertyValues = {
67076704
"values": [
67086705
"all",
67096706
"around",
6710-
"between",
6711-
"none"
6707+
"between"
67126708
]
67136709
},
67146710
"row-rule-width": {
@@ -13468,6 +13464,9 @@ var MathFunctionMatch = class extends BaseFunctionMatch {
1346813464
case "calc":
1346913465
case "sibling-count":
1347013466
case "sibling-index":
13467+
case "round":
13468+
case "mod":
13469+
case "rem":
1347113470
return true;
1347213471
}
1347313472
const catchFallback = func;
@@ -13486,6 +13485,9 @@ var MathFunctionMatcher = class _MathFunctionMatcher extends matcherBase(MathFun
1348613485
case "calc":
1348713486
case "sibling-count":
1348813487
case "sibling-index":
13488+
case "round":
13489+
case "mod":
13490+
case "rem":
1348913491
return maybeFunc;
1349013492
}
1349113493
const catchFallback = maybeFunc;

0 commit comments

Comments
 (0)