chrome-devtools-frontend 1.0.1650035 → 1.0.1650232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/front_end/core/host/UserMetrics.ts +0 -15
- package/front_end/core/sdk/CSSMetadata.ts +91 -1
- package/front_end/generated/SupportedCSSProperties.js +342 -114
- package/front_end/models/ai_assistance/AiConversation.ts +2 -1
- package/front_end/models/ai_assistance/agents/AccessibilityAgent.ts +10 -57
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/ExecuteJavascript.ts +13 -4
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +1 -7
- package/front_end/models/ai_assistance/ai_assistance.ts +2 -0
- package/front_end/models/ai_assistance/contexts/AccessibilityContext.snapshot.txt +26 -0
- package/front_end/models/ai_assistance/contexts/AccessibilityContext.ts +63 -0
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +3 -2
- package/front_end/models/stack_trace/DetailedErrorStackParser.ts +18 -0
- package/front_end/models/stack_trace/stack_trace.ts +0 -4
- package/front_end/panels/accessibility/ARIAAttributesView.ts +1 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +5 -5
- package/front_end/panels/ai_assistance/components/ChatInput.ts +1 -1
- package/front_end/panels/network/RequestConditionsDrawer.ts +236 -198
- package/front_end/panels/network/requestConditionsDrawer.css +3 -0
- package/front_end/panels/whats_new/ReleaseNoteText.ts +12 -6
- package/front_end/panels/whats_new/resources/WNDT.md +8 -7
- package/front_end/third_party/third-party-web/lib/nostats-subset.js +21 -15
- package/front_end/third_party/third-party-web/package/README.md +619 -582
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities.json +1 -1
- package/front_end/third_party/third-party-web/package/lib/create-entity-finder-api.js +27 -15
- package/front_end/third_party/third-party-web/package/lib/create-entity-finder-api.test.js +14 -0
- package/front_end/third_party/third-party-web/package/lib/entities.test.js +10 -0
- package/front_end/third_party/third-party-web/package/lib/index.test.js +6 -6
- package/front_end/third_party/third-party-web/package/lib/markdown/template.md +1 -3
- package/front_end/third_party/third-party-web/package/package.json +7 -3
- package/front_end/third_party/third-party-web/package.json +1 -1
- package/front_end/ui/components/buttons/floatingButton.css +3 -3
- package/front_end/ui/components/lists/list.css +2 -0
- package/front_end/ui/legacy/ListWidget.ts +8 -5
- package/front_end/ui/legacy/TextPrompt.ts +5 -2
- package/front_end/ui/legacy/components/utils/Linkifier.ts +12 -6
- package/front_end/ui/legacy/textPrompt.css +1 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
- package/package.json +1 -1
- package/front_end/models/stack_trace/ErrorStackParser.ts +0 -174
|
@@ -10,13 +10,17 @@ export const generatedProperties = [
|
|
|
10
10
|
"block-ellipsis",
|
|
11
11
|
"continue"
|
|
12
12
|
],
|
|
13
|
-
"name": "-alternative-line-clamp-shorthand"
|
|
13
|
+
"name": "-alternative-line-clamp-shorthand",
|
|
14
|
+
"runtime_flag": "CSSLineClampAsShorthand",
|
|
15
|
+
"runtime_flag_status": "test"
|
|
14
16
|
},
|
|
15
17
|
{
|
|
16
18
|
"keywords": [
|
|
17
19
|
"none"
|
|
18
20
|
],
|
|
19
|
-
"name": "-alternative-webkit-line-clamp-longhand"
|
|
21
|
+
"name": "-alternative-webkit-line-clamp-longhand",
|
|
22
|
+
"runtime_flag": "CSSLineClamp",
|
|
23
|
+
"runtime_flag_status": "stable"
|
|
20
24
|
},
|
|
21
25
|
{
|
|
22
26
|
"longhands": [
|
|
@@ -24,7 +28,9 @@ export const generatedProperties = [
|
|
|
24
28
|
"block-ellipsis",
|
|
25
29
|
"continue"
|
|
26
30
|
],
|
|
27
|
-
"name": "-alternative-webkit-line-clamp-shorthand"
|
|
31
|
+
"name": "-alternative-webkit-line-clamp-shorthand",
|
|
32
|
+
"runtime_flag": "CSSLineClampAsShorthand",
|
|
33
|
+
"runtime_flag_status": "test"
|
|
28
34
|
},
|
|
29
35
|
{
|
|
30
36
|
"inherited": true,
|
|
@@ -988,7 +994,9 @@ export const generatedProperties = [
|
|
|
988
994
|
"keywords": [
|
|
989
995
|
"none"
|
|
990
996
|
],
|
|
991
|
-
"name": "animation-trigger"
|
|
997
|
+
"name": "animation-trigger",
|
|
998
|
+
"runtime_flag": "AnimationTrigger",
|
|
999
|
+
"runtime_flag_status": "stable"
|
|
992
1000
|
},
|
|
993
1001
|
{
|
|
994
1002
|
"keywords": [
|
|
@@ -1146,7 +1154,9 @@ export const generatedProperties = [
|
|
|
1146
1154
|
{
|
|
1147
1155
|
"is_descriptor": true,
|
|
1148
1156
|
"is_property": false,
|
|
1149
|
-
"name": "base-url"
|
|
1157
|
+
"name": "base-url",
|
|
1158
|
+
"runtime_flag": "RouteMatching",
|
|
1159
|
+
"runtime_flag_status": "experimental"
|
|
1150
1160
|
},
|
|
1151
1161
|
{
|
|
1152
1162
|
"keywords": [
|
|
@@ -1170,7 +1180,9 @@ export const generatedProperties = [
|
|
|
1170
1180
|
"ellipsis",
|
|
1171
1181
|
"no-ellipsis"
|
|
1172
1182
|
],
|
|
1173
|
-
"name": "block-ellipsis"
|
|
1183
|
+
"name": "block-ellipsis",
|
|
1184
|
+
"runtime_flag": "CSSLineClampAsShorthand",
|
|
1185
|
+
"runtime_flag_status": "test"
|
|
1174
1186
|
},
|
|
1175
1187
|
{
|
|
1176
1188
|
"keywords": [
|
|
@@ -1597,7 +1609,9 @@ export const generatedProperties = [
|
|
|
1597
1609
|
"keywords": [
|
|
1598
1610
|
"none"
|
|
1599
1611
|
],
|
|
1600
|
-
"name": "border-shape"
|
|
1612
|
+
"name": "border-shape",
|
|
1613
|
+
"runtime_flag": "CSSBorderShape",
|
|
1614
|
+
"runtime_flag_status": "stable"
|
|
1601
1615
|
},
|
|
1602
1616
|
{
|
|
1603
1617
|
"inherited": true,
|
|
@@ -1764,7 +1778,9 @@ export const generatedProperties = [
|
|
|
1764
1778
|
"auto",
|
|
1765
1779
|
"manual"
|
|
1766
1780
|
],
|
|
1767
|
-
"name": "caret-animation"
|
|
1781
|
+
"name": "caret-animation",
|
|
1782
|
+
"runtime_flag": "CSSCaretAnimation",
|
|
1783
|
+
"runtime_flag_status": "stable"
|
|
1768
1784
|
},
|
|
1769
1785
|
{
|
|
1770
1786
|
"inherited": true,
|
|
@@ -1782,7 +1798,9 @@ export const generatedProperties = [
|
|
|
1782
1798
|
"block",
|
|
1783
1799
|
"underscore"
|
|
1784
1800
|
],
|
|
1785
|
-
"name": "caret-shape"
|
|
1801
|
+
"name": "caret-shape",
|
|
1802
|
+
"runtime_flag": "CSSCaretShape",
|
|
1803
|
+
"runtime_flag_status": "stable"
|
|
1786
1804
|
},
|
|
1787
1805
|
{
|
|
1788
1806
|
"keywords": [
|
|
@@ -1883,7 +1901,9 @@ export const generatedProperties = [
|
|
|
1883
1901
|
"keywords": [
|
|
1884
1902
|
"auto"
|
|
1885
1903
|
],
|
|
1886
|
-
"name": "column-height"
|
|
1904
|
+
"name": "column-height",
|
|
1905
|
+
"runtime_flag": "MulticolColumnWrapping",
|
|
1906
|
+
"runtime_flag_status": "stable"
|
|
1887
1907
|
},
|
|
1888
1908
|
{
|
|
1889
1909
|
"longhands": [
|
|
@@ -1900,7 +1920,9 @@ export const generatedProperties = [
|
|
|
1900
1920
|
"normal",
|
|
1901
1921
|
"intersection"
|
|
1902
1922
|
],
|
|
1903
|
-
"name": "column-rule-break"
|
|
1923
|
+
"name": "column-rule-break",
|
|
1924
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1925
|
+
"runtime_flag_status": "stable"
|
|
1904
1926
|
},
|
|
1905
1927
|
{
|
|
1906
1928
|
"keywords": [
|
|
@@ -1915,63 +1937,81 @@ export const generatedProperties = [
|
|
|
1915
1937
|
"column-rule-inset-junction-start",
|
|
1916
1938
|
"column-rule-inset-junction-end"
|
|
1917
1939
|
],
|
|
1918
|
-
"name": "column-rule-inset"
|
|
1940
|
+
"name": "column-rule-inset",
|
|
1941
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1942
|
+
"runtime_flag_status": "stable"
|
|
1919
1943
|
},
|
|
1920
1944
|
{
|
|
1921
1945
|
"longhands": [
|
|
1922
1946
|
"column-rule-inset-cap-start",
|
|
1923
1947
|
"column-rule-inset-cap-end"
|
|
1924
1948
|
],
|
|
1925
|
-
"name": "column-rule-inset-cap"
|
|
1949
|
+
"name": "column-rule-inset-cap",
|
|
1950
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1951
|
+
"runtime_flag_status": "stable"
|
|
1926
1952
|
},
|
|
1927
1953
|
{
|
|
1928
1954
|
"inherited": false,
|
|
1929
1955
|
"keywords": [
|
|
1930
1956
|
"overlap-join"
|
|
1931
1957
|
],
|
|
1932
|
-
"name": "column-rule-inset-cap-end"
|
|
1958
|
+
"name": "column-rule-inset-cap-end",
|
|
1959
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1960
|
+
"runtime_flag_status": "stable"
|
|
1933
1961
|
},
|
|
1934
1962
|
{
|
|
1935
1963
|
"inherited": false,
|
|
1936
1964
|
"keywords": [
|
|
1937
1965
|
"overlap-join"
|
|
1938
1966
|
],
|
|
1939
|
-
"name": "column-rule-inset-cap-start"
|
|
1967
|
+
"name": "column-rule-inset-cap-start",
|
|
1968
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1969
|
+
"runtime_flag_status": "stable"
|
|
1940
1970
|
},
|
|
1941
1971
|
{
|
|
1942
1972
|
"longhands": [
|
|
1943
1973
|
"column-rule-inset-cap-end",
|
|
1944
1974
|
"column-rule-inset-junction-end"
|
|
1945
1975
|
],
|
|
1946
|
-
"name": "column-rule-inset-end"
|
|
1976
|
+
"name": "column-rule-inset-end",
|
|
1977
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1978
|
+
"runtime_flag_status": "stable"
|
|
1947
1979
|
},
|
|
1948
1980
|
{
|
|
1949
1981
|
"longhands": [
|
|
1950
1982
|
"column-rule-inset-junction-start",
|
|
1951
1983
|
"column-rule-inset-junction-end"
|
|
1952
1984
|
],
|
|
1953
|
-
"name": "column-rule-inset-junction"
|
|
1985
|
+
"name": "column-rule-inset-junction",
|
|
1986
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1987
|
+
"runtime_flag_status": "stable"
|
|
1954
1988
|
},
|
|
1955
1989
|
{
|
|
1956
1990
|
"inherited": false,
|
|
1957
1991
|
"keywords": [
|
|
1958
1992
|
"overlap-join"
|
|
1959
1993
|
],
|
|
1960
|
-
"name": "column-rule-inset-junction-end"
|
|
1994
|
+
"name": "column-rule-inset-junction-end",
|
|
1995
|
+
"runtime_flag": "CSSGapDecoration",
|
|
1996
|
+
"runtime_flag_status": "stable"
|
|
1961
1997
|
},
|
|
1962
1998
|
{
|
|
1963
1999
|
"inherited": false,
|
|
1964
2000
|
"keywords": [
|
|
1965
2001
|
"overlap-join"
|
|
1966
2002
|
],
|
|
1967
|
-
"name": "column-rule-inset-junction-start"
|
|
2003
|
+
"name": "column-rule-inset-junction-start",
|
|
2004
|
+
"runtime_flag": "CSSGapDecoration",
|
|
2005
|
+
"runtime_flag_status": "stable"
|
|
1968
2006
|
},
|
|
1969
2007
|
{
|
|
1970
2008
|
"longhands": [
|
|
1971
2009
|
"column-rule-inset-cap-start",
|
|
1972
2010
|
"column-rule-inset-junction-start"
|
|
1973
2011
|
],
|
|
1974
|
-
"name": "column-rule-inset-start"
|
|
2012
|
+
"name": "column-rule-inset-start",
|
|
2013
|
+
"runtime_flag": "CSSGapDecoration",
|
|
2014
|
+
"runtime_flag_status": "stable"
|
|
1975
2015
|
},
|
|
1976
2016
|
{
|
|
1977
2017
|
"keywords": [
|
|
@@ -1996,7 +2036,9 @@ export const generatedProperties = [
|
|
|
1996
2036
|
"around",
|
|
1997
2037
|
"between"
|
|
1998
2038
|
],
|
|
1999
|
-
"name": "column-rule-visibility-items"
|
|
2039
|
+
"name": "column-rule-visibility-items",
|
|
2040
|
+
"runtime_flag": "CSSGapDecoration",
|
|
2041
|
+
"runtime_flag_status": "stable"
|
|
2000
2042
|
},
|
|
2001
2043
|
{
|
|
2002
2044
|
"keywords": [
|
|
@@ -2025,7 +2067,9 @@ export const generatedProperties = [
|
|
|
2025
2067
|
"nowrap",
|
|
2026
2068
|
"wrap"
|
|
2027
2069
|
],
|
|
2028
|
-
"name": "column-wrap"
|
|
2070
|
+
"name": "column-wrap",
|
|
2071
|
+
"runtime_flag": "MulticolColumnWrapping",
|
|
2072
|
+
"runtime_flag_status": "stable"
|
|
2029
2073
|
},
|
|
2030
2074
|
{
|
|
2031
2075
|
"longhands": [
|
|
@@ -2129,7 +2173,9 @@ export const generatedProperties = [
|
|
|
2129
2173
|
"collapse",
|
|
2130
2174
|
"-webkit-legacy"
|
|
2131
2175
|
],
|
|
2132
|
-
"name": "continue"
|
|
2176
|
+
"name": "continue",
|
|
2177
|
+
"runtime_flag": "CSSLineClampAsShorthand",
|
|
2178
|
+
"runtime_flag_status": "test"
|
|
2133
2179
|
},
|
|
2134
2180
|
{
|
|
2135
2181
|
"keywords": [
|
|
@@ -2145,7 +2191,9 @@ export const generatedProperties = [
|
|
|
2145
2191
|
"border-bottom-left-radius",
|
|
2146
2192
|
"corner-bottom-left-shape"
|
|
2147
2193
|
],
|
|
2148
|
-
"name": "corner"
|
|
2194
|
+
"name": "corner",
|
|
2195
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2196
|
+
"runtime_flag_status": "experimental"
|
|
2149
2197
|
},
|
|
2150
2198
|
{
|
|
2151
2199
|
"keywords": [
|
|
@@ -2157,7 +2205,9 @@ export const generatedProperties = [
|
|
|
2157
2205
|
"border-end-end-radius",
|
|
2158
2206
|
"corner-end-end-shape"
|
|
2159
2207
|
],
|
|
2160
|
-
"name": "corner-block-end"
|
|
2208
|
+
"name": "corner-block-end",
|
|
2209
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2210
|
+
"runtime_flag_status": "experimental"
|
|
2161
2211
|
},
|
|
2162
2212
|
{
|
|
2163
2213
|
"longhands": [
|
|
@@ -2176,7 +2226,9 @@ export const generatedProperties = [
|
|
|
2176
2226
|
"border-start-end-radius",
|
|
2177
2227
|
"corner-start-end-shape"
|
|
2178
2228
|
],
|
|
2179
|
-
"name": "corner-block-start"
|
|
2229
|
+
"name": "corner-block-start",
|
|
2230
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2231
|
+
"runtime_flag_status": "experimental"
|
|
2180
2232
|
},
|
|
2181
2233
|
{
|
|
2182
2234
|
"longhands": [
|
|
@@ -2195,7 +2247,9 @@ export const generatedProperties = [
|
|
|
2195
2247
|
"border-bottom-right-radius",
|
|
2196
2248
|
"corner-bottom-right-shape"
|
|
2197
2249
|
],
|
|
2198
|
-
"name": "corner-bottom"
|
|
2250
|
+
"name": "corner-bottom",
|
|
2251
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2252
|
+
"runtime_flag_status": "experimental"
|
|
2199
2253
|
},
|
|
2200
2254
|
{
|
|
2201
2255
|
"keywords": [
|
|
@@ -2205,7 +2259,9 @@ export const generatedProperties = [
|
|
|
2205
2259
|
"border-bottom-left-radius",
|
|
2206
2260
|
"corner-bottom-left-shape"
|
|
2207
2261
|
],
|
|
2208
|
-
"name": "corner-bottom-left"
|
|
2262
|
+
"name": "corner-bottom-left",
|
|
2263
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2264
|
+
"runtime_flag_status": "experimental"
|
|
2209
2265
|
},
|
|
2210
2266
|
{
|
|
2211
2267
|
"keywords": [
|
|
@@ -2226,7 +2282,9 @@ export const generatedProperties = [
|
|
|
2226
2282
|
"border-bottom-right-radius",
|
|
2227
2283
|
"corner-bottom-right-shape"
|
|
2228
2284
|
],
|
|
2229
|
-
"name": "corner-bottom-right"
|
|
2285
|
+
"name": "corner-bottom-right",
|
|
2286
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2287
|
+
"runtime_flag_status": "experimental"
|
|
2230
2288
|
},
|
|
2231
2289
|
{
|
|
2232
2290
|
"keywords": [
|
|
@@ -2254,7 +2312,9 @@ export const generatedProperties = [
|
|
|
2254
2312
|
"border-end-end-radius",
|
|
2255
2313
|
"corner-end-end-shape"
|
|
2256
2314
|
],
|
|
2257
|
-
"name": "corner-end-end"
|
|
2315
|
+
"name": "corner-end-end",
|
|
2316
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2317
|
+
"runtime_flag_status": "experimental"
|
|
2258
2318
|
},
|
|
2259
2319
|
{
|
|
2260
2320
|
"name": "corner-end-end-shape"
|
|
@@ -2267,7 +2327,9 @@ export const generatedProperties = [
|
|
|
2267
2327
|
"border-end-start-radius",
|
|
2268
2328
|
"corner-end-start-shape"
|
|
2269
2329
|
],
|
|
2270
|
-
"name": "corner-end-start"
|
|
2330
|
+
"name": "corner-end-start",
|
|
2331
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2332
|
+
"runtime_flag_status": "experimental"
|
|
2271
2333
|
},
|
|
2272
2334
|
{
|
|
2273
2335
|
"name": "corner-end-start-shape"
|
|
@@ -2282,7 +2344,9 @@ export const generatedProperties = [
|
|
|
2282
2344
|
"border-end-end-radius",
|
|
2283
2345
|
"corner-end-end-shape"
|
|
2284
2346
|
],
|
|
2285
|
-
"name": "corner-inline-end"
|
|
2347
|
+
"name": "corner-inline-end",
|
|
2348
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2349
|
+
"runtime_flag_status": "experimental"
|
|
2286
2350
|
},
|
|
2287
2351
|
{
|
|
2288
2352
|
"longhands": [
|
|
@@ -2301,7 +2365,9 @@ export const generatedProperties = [
|
|
|
2301
2365
|
"border-end-start-radius",
|
|
2302
2366
|
"corner-end-start-shape"
|
|
2303
2367
|
],
|
|
2304
|
-
"name": "corner-inline-start"
|
|
2368
|
+
"name": "corner-inline-start",
|
|
2369
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2370
|
+
"runtime_flag_status": "experimental"
|
|
2305
2371
|
},
|
|
2306
2372
|
{
|
|
2307
2373
|
"longhands": [
|
|
@@ -2320,7 +2386,9 @@ export const generatedProperties = [
|
|
|
2320
2386
|
"border-bottom-left-radius",
|
|
2321
2387
|
"corner-bottom-left-shape"
|
|
2322
2388
|
],
|
|
2323
|
-
"name": "corner-left"
|
|
2389
|
+
"name": "corner-left",
|
|
2390
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2391
|
+
"runtime_flag_status": "experimental"
|
|
2324
2392
|
},
|
|
2325
2393
|
{
|
|
2326
2394
|
"longhands": [
|
|
@@ -2339,7 +2407,9 @@ export const generatedProperties = [
|
|
|
2339
2407
|
"border-bottom-right-radius",
|
|
2340
2408
|
"corner-bottom-right-shape"
|
|
2341
2409
|
],
|
|
2342
|
-
"name": "corner-right"
|
|
2410
|
+
"name": "corner-right",
|
|
2411
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2412
|
+
"runtime_flag_status": "experimental"
|
|
2343
2413
|
},
|
|
2344
2414
|
{
|
|
2345
2415
|
"longhands": [
|
|
@@ -2365,7 +2435,9 @@ export const generatedProperties = [
|
|
|
2365
2435
|
"border-start-end-radius",
|
|
2366
2436
|
"corner-start-end-shape"
|
|
2367
2437
|
],
|
|
2368
|
-
"name": "corner-start-end"
|
|
2438
|
+
"name": "corner-start-end",
|
|
2439
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2440
|
+
"runtime_flag_status": "experimental"
|
|
2369
2441
|
},
|
|
2370
2442
|
{
|
|
2371
2443
|
"name": "corner-start-end-shape"
|
|
@@ -2378,7 +2450,9 @@ export const generatedProperties = [
|
|
|
2378
2450
|
"border-start-start-radius",
|
|
2379
2451
|
"corner-start-start-shape"
|
|
2380
2452
|
],
|
|
2381
|
-
"name": "corner-start-start"
|
|
2453
|
+
"name": "corner-start-start",
|
|
2454
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2455
|
+
"runtime_flag_status": "experimental"
|
|
2382
2456
|
},
|
|
2383
2457
|
{
|
|
2384
2458
|
"name": "corner-start-start-shape"
|
|
@@ -2393,7 +2467,9 @@ export const generatedProperties = [
|
|
|
2393
2467
|
"border-top-right-radius",
|
|
2394
2468
|
"corner-top-right-shape"
|
|
2395
2469
|
],
|
|
2396
|
-
"name": "corner-top"
|
|
2470
|
+
"name": "corner-top",
|
|
2471
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2472
|
+
"runtime_flag_status": "experimental"
|
|
2397
2473
|
},
|
|
2398
2474
|
{
|
|
2399
2475
|
"keywords": [
|
|
@@ -2403,7 +2479,9 @@ export const generatedProperties = [
|
|
|
2403
2479
|
"border-top-left-radius",
|
|
2404
2480
|
"corner-top-left-shape"
|
|
2405
2481
|
],
|
|
2406
|
-
"name": "corner-top-left"
|
|
2482
|
+
"name": "corner-top-left",
|
|
2483
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2484
|
+
"runtime_flag_status": "experimental"
|
|
2407
2485
|
},
|
|
2408
2486
|
{
|
|
2409
2487
|
"keywords": [
|
|
@@ -2424,7 +2502,9 @@ export const generatedProperties = [
|
|
|
2424
2502
|
"border-top-right-radius",
|
|
2425
2503
|
"corner-top-right-shape"
|
|
2426
2504
|
],
|
|
2427
|
-
"name": "corner-top-right"
|
|
2505
|
+
"name": "corner-top-right",
|
|
2506
|
+
"runtime_flag": "CSSCornersShorthand",
|
|
2507
|
+
"runtime_flag_status": "experimental"
|
|
2428
2508
|
},
|
|
2429
2509
|
{
|
|
2430
2510
|
"keywords": [
|
|
@@ -2588,7 +2668,9 @@ export const generatedProperties = [
|
|
|
2588
2668
|
"no-limit",
|
|
2589
2669
|
"constrained"
|
|
2590
2670
|
],
|
|
2591
|
-
"name": "dynamic-range-limit"
|
|
2671
|
+
"name": "dynamic-range-limit",
|
|
2672
|
+
"runtime_flag": "CSSDynamicRangeLimit",
|
|
2673
|
+
"runtime_flag_status": "stable"
|
|
2592
2674
|
},
|
|
2593
2675
|
{
|
|
2594
2676
|
"inherited": true,
|
|
@@ -2670,7 +2752,9 @@ export const generatedProperties = [
|
|
|
2670
2752
|
"name": "flex-grow"
|
|
2671
2753
|
},
|
|
2672
2754
|
{
|
|
2673
|
-
"name": "flex-line-count"
|
|
2755
|
+
"name": "flex-line-count",
|
|
2756
|
+
"runtime_flag": "FlexWrapBalance",
|
|
2757
|
+
"runtime_flag_status": "stable"
|
|
2674
2758
|
},
|
|
2675
2759
|
{
|
|
2676
2760
|
"name": "flex-shrink"
|
|
@@ -2708,7 +2792,9 @@ export const generatedProperties = [
|
|
|
2708
2792
|
"normal",
|
|
2709
2793
|
"infinite"
|
|
2710
2794
|
],
|
|
2711
|
-
"name": "flow-tolerance"
|
|
2795
|
+
"name": "flow-tolerance",
|
|
2796
|
+
"runtime_flag": "CSSGridLanesLayout",
|
|
2797
|
+
"runtime_flag_status": "experimental"
|
|
2712
2798
|
},
|
|
2713
2799
|
{
|
|
2714
2800
|
"inherited": true,
|
|
@@ -2767,7 +2853,9 @@ export const generatedProperties = [
|
|
|
2767
2853
|
"keywords": [
|
|
2768
2854
|
"normal"
|
|
2769
2855
|
],
|
|
2770
|
-
"name": "font-language-override"
|
|
2856
|
+
"name": "font-language-override",
|
|
2857
|
+
"runtime_flag": "FontLanguageOverride",
|
|
2858
|
+
"runtime_flag_status": "stable"
|
|
2771
2859
|
},
|
|
2772
2860
|
{
|
|
2773
2861
|
"inherited": true,
|
|
@@ -2814,7 +2902,9 @@ export const generatedProperties = [
|
|
|
2814
2902
|
"ic-height",
|
|
2815
2903
|
"from-font"
|
|
2816
2904
|
],
|
|
2817
|
-
"name": "font-size-adjust"
|
|
2905
|
+
"name": "font-size-adjust",
|
|
2906
|
+
"runtime_flag": "CSSFontSizeAdjust",
|
|
2907
|
+
"runtime_flag_status": "stable"
|
|
2818
2908
|
},
|
|
2819
2909
|
{
|
|
2820
2910
|
"inherited": true,
|
|
@@ -3001,7 +3091,9 @@ export const generatedProperties = [
|
|
|
3001
3091
|
"none",
|
|
3002
3092
|
"preserve-parent-color"
|
|
3003
3093
|
],
|
|
3004
|
-
"name": "forced-color-adjust"
|
|
3094
|
+
"name": "forced-color-adjust",
|
|
3095
|
+
"runtime_flag": "ForcedColors",
|
|
3096
|
+
"runtime_flag_status": "stable"
|
|
3005
3097
|
},
|
|
3006
3098
|
{
|
|
3007
3099
|
"keywords": [
|
|
@@ -3011,7 +3103,9 @@ export const generatedProperties = [
|
|
|
3011
3103
|
"content-block-size",
|
|
3012
3104
|
"content-inline-size"
|
|
3013
3105
|
],
|
|
3014
|
-
"name": "frame-sizing"
|
|
3106
|
+
"name": "frame-sizing",
|
|
3107
|
+
"runtime_flag": "ResponsiveIframes",
|
|
3108
|
+
"runtime_flag_status": "experimental"
|
|
3015
3109
|
},
|
|
3016
3110
|
{
|
|
3017
3111
|
"longhands": [
|
|
@@ -3089,7 +3183,9 @@ export const generatedProperties = [
|
|
|
3089
3183
|
"grid-template-rows",
|
|
3090
3184
|
"grid-lanes-direction"
|
|
3091
3185
|
],
|
|
3092
|
-
"name": "grid-lanes"
|
|
3186
|
+
"name": "grid-lanes",
|
|
3187
|
+
"runtime_flag": "CSSGridLanesLayout",
|
|
3188
|
+
"runtime_flag_status": "experimental"
|
|
3093
3189
|
},
|
|
3094
3190
|
{
|
|
3095
3191
|
"keywords": [
|
|
@@ -3099,14 +3195,18 @@ export const generatedProperties = [
|
|
|
3099
3195
|
"fill-reverse",
|
|
3100
3196
|
"track-reverse"
|
|
3101
3197
|
],
|
|
3102
|
-
"name": "grid-lanes-direction"
|
|
3198
|
+
"name": "grid-lanes-direction",
|
|
3199
|
+
"runtime_flag": "CSSGridLanesLayout",
|
|
3200
|
+
"runtime_flag_status": "experimental"
|
|
3103
3201
|
},
|
|
3104
3202
|
{
|
|
3105
3203
|
"keywords": [
|
|
3106
3204
|
"normal",
|
|
3107
3205
|
"dense"
|
|
3108
3206
|
],
|
|
3109
|
-
"name": "grid-lanes-pack"
|
|
3207
|
+
"name": "grid-lanes-pack",
|
|
3208
|
+
"runtime_flag": "CSSGridLanesLayout",
|
|
3209
|
+
"runtime_flag_status": "experimental"
|
|
3110
3210
|
},
|
|
3111
3211
|
{
|
|
3112
3212
|
"longhands": [
|
|
@@ -3167,12 +3267,16 @@ export const generatedProperties = [
|
|
|
3167
3267
|
"last",
|
|
3168
3268
|
"allow-end"
|
|
3169
3269
|
],
|
|
3170
|
-
"name": "hanging-punctuation"
|
|
3270
|
+
"name": "hanging-punctuation",
|
|
3271
|
+
"runtime_flag": "CSSHangingPunctuation",
|
|
3272
|
+
"runtime_flag_status": "test"
|
|
3171
3273
|
},
|
|
3172
3274
|
{
|
|
3173
3275
|
"is_descriptor": true,
|
|
3174
3276
|
"is_property": false,
|
|
3175
|
-
"name": "hash"
|
|
3277
|
+
"name": "hash",
|
|
3278
|
+
"runtime_flag": "RouteMatching",
|
|
3279
|
+
"runtime_flag_status": "experimental"
|
|
3176
3280
|
},
|
|
3177
3281
|
{
|
|
3178
3282
|
"keywords": [
|
|
@@ -3186,7 +3290,9 @@ export const generatedProperties = [
|
|
|
3186
3290
|
{
|
|
3187
3291
|
"is_descriptor": true,
|
|
3188
3292
|
"is_property": false,
|
|
3189
|
-
"name": "hostname"
|
|
3293
|
+
"name": "hostname",
|
|
3294
|
+
"runtime_flag": "RouteMatching",
|
|
3295
|
+
"runtime_flag_status": "experimental"
|
|
3190
3296
|
},
|
|
3191
3297
|
{
|
|
3192
3298
|
"inherited": true,
|
|
@@ -3219,7 +3325,9 @@ export const generatedProperties = [
|
|
|
3219
3325
|
"paused",
|
|
3220
3326
|
"stopped"
|
|
3221
3327
|
],
|
|
3222
|
-
"name": "image-animation"
|
|
3328
|
+
"name": "image-animation",
|
|
3329
|
+
"runtime_flag": "CSSImageAnimation",
|
|
3330
|
+
"runtime_flag_status": "test"
|
|
3223
3331
|
},
|
|
3224
3332
|
{
|
|
3225
3333
|
"inherited": true,
|
|
@@ -3413,7 +3521,9 @@ export const generatedProperties = [
|
|
|
3413
3521
|
"no-ellipsis",
|
|
3414
3522
|
"-webkit-legacy"
|
|
3415
3523
|
],
|
|
3416
|
-
"name": "line-clamp"
|
|
3524
|
+
"name": "line-clamp",
|
|
3525
|
+
"runtime_flag": "CSSLineClamp",
|
|
3526
|
+
"runtime_flag_status": "stable"
|
|
3417
3527
|
},
|
|
3418
3528
|
{
|
|
3419
3529
|
"is_descriptor": true,
|
|
@@ -3536,7 +3646,9 @@ export const generatedProperties = [
|
|
|
3536
3646
|
"name": "margin-top"
|
|
3537
3647
|
},
|
|
3538
3648
|
{
|
|
3539
|
-
"name": "margin-trim"
|
|
3649
|
+
"name": "margin-trim",
|
|
3650
|
+
"runtime_flag": "MarginTrim",
|
|
3651
|
+
"runtime_flag_status": "experimental"
|
|
3540
3652
|
},
|
|
3541
3653
|
{
|
|
3542
3654
|
"inherited": true,
|
|
@@ -3678,7 +3790,9 @@ export const generatedProperties = [
|
|
|
3678
3790
|
"keywords": [
|
|
3679
3791
|
"auto"
|
|
3680
3792
|
],
|
|
3681
|
-
"name": "max-lines"
|
|
3793
|
+
"name": "max-lines",
|
|
3794
|
+
"runtime_flag": "CSSLineClampAsShorthand",
|
|
3795
|
+
"runtime_flag_status": "test"
|
|
3682
3796
|
},
|
|
3683
3797
|
{
|
|
3684
3798
|
"keywords": [
|
|
@@ -3827,7 +3941,9 @@ export const generatedProperties = [
|
|
|
3827
3941
|
"normal",
|
|
3828
3942
|
"none"
|
|
3829
3943
|
],
|
|
3830
|
-
"name": "origin-trial-test-property"
|
|
3944
|
+
"name": "origin-trial-test-property",
|
|
3945
|
+
"runtime_flag": "OriginTrialsSampleAPI",
|
|
3946
|
+
"runtime_flag_status": null
|
|
3831
3947
|
},
|
|
3832
3948
|
{
|
|
3833
3949
|
"inherited": true,
|
|
@@ -3954,7 +4070,9 @@ export const generatedProperties = [
|
|
|
3954
4070
|
"none",
|
|
3955
4071
|
"auto"
|
|
3956
4072
|
],
|
|
3957
|
-
"name": "overlay"
|
|
4073
|
+
"name": "overlay",
|
|
4074
|
+
"runtime_flag": "OverlayProperty",
|
|
4075
|
+
"runtime_flag_status": "stable"
|
|
3958
4076
|
},
|
|
3959
4077
|
{
|
|
3960
4078
|
"is_descriptor": true,
|
|
@@ -4087,7 +4205,9 @@ export const generatedProperties = [
|
|
|
4087
4205
|
"clamp",
|
|
4088
4206
|
"add"
|
|
4089
4207
|
],
|
|
4090
|
-
"name": "page-margin-safety"
|
|
4208
|
+
"name": "page-margin-safety",
|
|
4209
|
+
"runtime_flag": "CSSSafePrintableInset",
|
|
4210
|
+
"runtime_flag_status": "stable"
|
|
4091
4211
|
},
|
|
4092
4212
|
{
|
|
4093
4213
|
"is_descriptor": true,
|
|
@@ -4107,17 +4227,23 @@ export const generatedProperties = [
|
|
|
4107
4227
|
"keywords": [
|
|
4108
4228
|
"none"
|
|
4109
4229
|
],
|
|
4110
|
-
"name": "path-length"
|
|
4230
|
+
"name": "path-length",
|
|
4231
|
+
"runtime_flag": "SvgPathLengthCssProperty",
|
|
4232
|
+
"runtime_flag_status": "experimental"
|
|
4111
4233
|
},
|
|
4112
4234
|
{
|
|
4113
4235
|
"is_descriptor": true,
|
|
4114
4236
|
"is_property": false,
|
|
4115
|
-
"name": "pathname"
|
|
4237
|
+
"name": "pathname",
|
|
4238
|
+
"runtime_flag": "RouteMatching",
|
|
4239
|
+
"runtime_flag_status": "experimental"
|
|
4116
4240
|
},
|
|
4117
4241
|
{
|
|
4118
4242
|
"is_descriptor": true,
|
|
4119
4243
|
"is_property": false,
|
|
4120
|
-
"name": "pattern"
|
|
4244
|
+
"name": "pattern",
|
|
4245
|
+
"runtime_flag": "RouteMatching",
|
|
4246
|
+
"runtime_flag_status": "experimental"
|
|
4121
4247
|
},
|
|
4122
4248
|
{
|
|
4123
4249
|
"keywords": [
|
|
@@ -4169,7 +4295,9 @@ export const generatedProperties = [
|
|
|
4169
4295
|
{
|
|
4170
4296
|
"is_descriptor": true,
|
|
4171
4297
|
"is_property": false,
|
|
4172
|
-
"name": "port"
|
|
4298
|
+
"name": "port",
|
|
4299
|
+
"runtime_flag": "RouteMatching",
|
|
4300
|
+
"runtime_flag_status": "experimental"
|
|
4173
4301
|
},
|
|
4174
4302
|
{
|
|
4175
4303
|
"keywords": [
|
|
@@ -4261,7 +4389,9 @@ export const generatedProperties = [
|
|
|
4261
4389
|
{
|
|
4262
4390
|
"is_descriptor": true,
|
|
4263
4391
|
"is_property": false,
|
|
4264
|
-
"name": "protocol"
|
|
4392
|
+
"name": "protocol",
|
|
4393
|
+
"runtime_flag": "RouteMatching",
|
|
4394
|
+
"runtime_flag_status": "experimental"
|
|
4265
4395
|
},
|
|
4266
4396
|
{
|
|
4267
4397
|
"inherited": true,
|
|
@@ -4308,7 +4438,9 @@ export const generatedProperties = [
|
|
|
4308
4438
|
{
|
|
4309
4439
|
"is_descriptor": true,
|
|
4310
4440
|
"is_property": false,
|
|
4311
|
-
"name": "result"
|
|
4441
|
+
"name": "result",
|
|
4442
|
+
"runtime_flag": "CSSFunctions",
|
|
4443
|
+
"runtime_flag_status": "stable"
|
|
4312
4444
|
},
|
|
4313
4445
|
{
|
|
4314
4446
|
"keywords": [
|
|
@@ -4331,7 +4463,9 @@ export const generatedProperties = [
|
|
|
4331
4463
|
"row-rule-style",
|
|
4332
4464
|
"row-rule-color"
|
|
4333
4465
|
],
|
|
4334
|
-
"name": "row-rule"
|
|
4466
|
+
"name": "row-rule",
|
|
4467
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4468
|
+
"runtime_flag_status": "stable"
|
|
4335
4469
|
},
|
|
4336
4470
|
{
|
|
4337
4471
|
"inherited": false,
|
|
@@ -4340,13 +4474,17 @@ export const generatedProperties = [
|
|
|
4340
4474
|
"normal",
|
|
4341
4475
|
"intersection"
|
|
4342
4476
|
],
|
|
4343
|
-
"name": "row-rule-break"
|
|
4477
|
+
"name": "row-rule-break",
|
|
4478
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4479
|
+
"runtime_flag_status": "stable"
|
|
4344
4480
|
},
|
|
4345
4481
|
{
|
|
4346
4482
|
"keywords": [
|
|
4347
4483
|
"currentcolor"
|
|
4348
4484
|
],
|
|
4349
|
-
"name": "row-rule-color"
|
|
4485
|
+
"name": "row-rule-color",
|
|
4486
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4487
|
+
"runtime_flag_status": "stable"
|
|
4350
4488
|
},
|
|
4351
4489
|
{
|
|
4352
4490
|
"longhands": [
|
|
@@ -4355,63 +4493,81 @@ export const generatedProperties = [
|
|
|
4355
4493
|
"row-rule-inset-junction-start",
|
|
4356
4494
|
"row-rule-inset-junction-end"
|
|
4357
4495
|
],
|
|
4358
|
-
"name": "row-rule-inset"
|
|
4496
|
+
"name": "row-rule-inset",
|
|
4497
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4498
|
+
"runtime_flag_status": "stable"
|
|
4359
4499
|
},
|
|
4360
4500
|
{
|
|
4361
4501
|
"longhands": [
|
|
4362
4502
|
"row-rule-inset-cap-start",
|
|
4363
4503
|
"row-rule-inset-cap-end"
|
|
4364
4504
|
],
|
|
4365
|
-
"name": "row-rule-inset-cap"
|
|
4505
|
+
"name": "row-rule-inset-cap",
|
|
4506
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4507
|
+
"runtime_flag_status": "stable"
|
|
4366
4508
|
},
|
|
4367
4509
|
{
|
|
4368
4510
|
"inherited": false,
|
|
4369
4511
|
"keywords": [
|
|
4370
4512
|
"overlap-join"
|
|
4371
4513
|
],
|
|
4372
|
-
"name": "row-rule-inset-cap-end"
|
|
4514
|
+
"name": "row-rule-inset-cap-end",
|
|
4515
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4516
|
+
"runtime_flag_status": "stable"
|
|
4373
4517
|
},
|
|
4374
4518
|
{
|
|
4375
4519
|
"inherited": false,
|
|
4376
4520
|
"keywords": [
|
|
4377
4521
|
"overlap-join"
|
|
4378
4522
|
],
|
|
4379
|
-
"name": "row-rule-inset-cap-start"
|
|
4523
|
+
"name": "row-rule-inset-cap-start",
|
|
4524
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4525
|
+
"runtime_flag_status": "stable"
|
|
4380
4526
|
},
|
|
4381
4527
|
{
|
|
4382
4528
|
"longhands": [
|
|
4383
4529
|
"row-rule-inset-cap-end",
|
|
4384
4530
|
"row-rule-inset-junction-end"
|
|
4385
4531
|
],
|
|
4386
|
-
"name": "row-rule-inset-end"
|
|
4532
|
+
"name": "row-rule-inset-end",
|
|
4533
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4534
|
+
"runtime_flag_status": "stable"
|
|
4387
4535
|
},
|
|
4388
4536
|
{
|
|
4389
4537
|
"longhands": [
|
|
4390
4538
|
"row-rule-inset-junction-start",
|
|
4391
4539
|
"row-rule-inset-junction-end"
|
|
4392
4540
|
],
|
|
4393
|
-
"name": "row-rule-inset-junction"
|
|
4541
|
+
"name": "row-rule-inset-junction",
|
|
4542
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4543
|
+
"runtime_flag_status": "stable"
|
|
4394
4544
|
},
|
|
4395
4545
|
{
|
|
4396
4546
|
"inherited": false,
|
|
4397
4547
|
"keywords": [
|
|
4398
4548
|
"overlap-join"
|
|
4399
4549
|
],
|
|
4400
|
-
"name": "row-rule-inset-junction-end"
|
|
4550
|
+
"name": "row-rule-inset-junction-end",
|
|
4551
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4552
|
+
"runtime_flag_status": "stable"
|
|
4401
4553
|
},
|
|
4402
4554
|
{
|
|
4403
4555
|
"inherited": false,
|
|
4404
4556
|
"keywords": [
|
|
4405
4557
|
"overlap-join"
|
|
4406
4558
|
],
|
|
4407
|
-
"name": "row-rule-inset-junction-start"
|
|
4559
|
+
"name": "row-rule-inset-junction-start",
|
|
4560
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4561
|
+
"runtime_flag_status": "stable"
|
|
4408
4562
|
},
|
|
4409
4563
|
{
|
|
4410
4564
|
"longhands": [
|
|
4411
4565
|
"row-rule-inset-cap-start",
|
|
4412
4566
|
"row-rule-inset-junction-start"
|
|
4413
4567
|
],
|
|
4414
|
-
"name": "row-rule-inset-start"
|
|
4568
|
+
"name": "row-rule-inset-start",
|
|
4569
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4570
|
+
"runtime_flag_status": "stable"
|
|
4415
4571
|
},
|
|
4416
4572
|
{
|
|
4417
4573
|
"keywords": [
|
|
@@ -4426,7 +4582,9 @@ export const generatedProperties = [
|
|
|
4426
4582
|
"solid",
|
|
4427
4583
|
"double"
|
|
4428
4584
|
],
|
|
4429
|
-
"name": "row-rule-style"
|
|
4585
|
+
"name": "row-rule-style",
|
|
4586
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4587
|
+
"runtime_flag_status": "stable"
|
|
4430
4588
|
},
|
|
4431
4589
|
{
|
|
4432
4590
|
"inherited": false,
|
|
@@ -4436,7 +4594,9 @@ export const generatedProperties = [
|
|
|
4436
4594
|
"around",
|
|
4437
4595
|
"between"
|
|
4438
4596
|
],
|
|
4439
|
-
"name": "row-rule-visibility-items"
|
|
4597
|
+
"name": "row-rule-visibility-items",
|
|
4598
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4599
|
+
"runtime_flag_status": "stable"
|
|
4440
4600
|
},
|
|
4441
4601
|
{
|
|
4442
4602
|
"keywords": [
|
|
@@ -4444,7 +4604,9 @@ export const generatedProperties = [
|
|
|
4444
4604
|
"medium",
|
|
4445
4605
|
"thick"
|
|
4446
4606
|
],
|
|
4447
|
-
"name": "row-rule-width"
|
|
4607
|
+
"name": "row-rule-width",
|
|
4608
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4609
|
+
"runtime_flag_status": "stable"
|
|
4448
4610
|
},
|
|
4449
4611
|
{
|
|
4450
4612
|
"inherited": true,
|
|
@@ -4462,7 +4624,9 @@ export const generatedProperties = [
|
|
|
4462
4624
|
"auto",
|
|
4463
4625
|
"spaces"
|
|
4464
4626
|
],
|
|
4465
|
-
"name": "ruby-overhang"
|
|
4627
|
+
"name": "ruby-overhang",
|
|
4628
|
+
"runtime_flag": "CSSRubyOverhang",
|
|
4629
|
+
"runtime_flag_status": "stable"
|
|
4466
4630
|
},
|
|
4467
4631
|
{
|
|
4468
4632
|
"inherited": true,
|
|
@@ -4481,21 +4645,27 @@ export const generatedProperties = [
|
|
|
4481
4645
|
"row-rule-style",
|
|
4482
4646
|
"row-rule-color"
|
|
4483
4647
|
],
|
|
4484
|
-
"name": "rule"
|
|
4648
|
+
"name": "rule",
|
|
4649
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4650
|
+
"runtime_flag_status": "stable"
|
|
4485
4651
|
},
|
|
4486
4652
|
{
|
|
4487
4653
|
"longhands": [
|
|
4488
4654
|
"row-rule-break",
|
|
4489
4655
|
"column-rule-break"
|
|
4490
4656
|
],
|
|
4491
|
-
"name": "rule-break"
|
|
4657
|
+
"name": "rule-break",
|
|
4658
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4659
|
+
"runtime_flag_status": "stable"
|
|
4492
4660
|
},
|
|
4493
4661
|
{
|
|
4494
4662
|
"longhands": [
|
|
4495
4663
|
"column-rule-color",
|
|
4496
4664
|
"row-rule-color"
|
|
4497
4665
|
],
|
|
4498
|
-
"name": "rule-color"
|
|
4666
|
+
"name": "rule-color",
|
|
4667
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4668
|
+
"runtime_flag_status": "stable"
|
|
4499
4669
|
},
|
|
4500
4670
|
{
|
|
4501
4671
|
"longhands": [
|
|
@@ -4508,7 +4678,9 @@ export const generatedProperties = [
|
|
|
4508
4678
|
"column-rule-inset-junction-start",
|
|
4509
4679
|
"column-rule-inset-junction-end"
|
|
4510
4680
|
],
|
|
4511
|
-
"name": "rule-inset"
|
|
4681
|
+
"name": "rule-inset",
|
|
4682
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4683
|
+
"runtime_flag_status": "stable"
|
|
4512
4684
|
},
|
|
4513
4685
|
{
|
|
4514
4686
|
"longhands": [
|
|
@@ -4517,7 +4689,9 @@ export const generatedProperties = [
|
|
|
4517
4689
|
"column-rule-inset-cap-start",
|
|
4518
4690
|
"column-rule-inset-cap-end"
|
|
4519
4691
|
],
|
|
4520
|
-
"name": "rule-inset-cap"
|
|
4692
|
+
"name": "rule-inset-cap",
|
|
4693
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4694
|
+
"runtime_flag_status": "stable"
|
|
4521
4695
|
},
|
|
4522
4696
|
{
|
|
4523
4697
|
"longhands": [
|
|
@@ -4526,7 +4700,9 @@ export const generatedProperties = [
|
|
|
4526
4700
|
"row-rule-inset-cap-end",
|
|
4527
4701
|
"row-rule-inset-junction-end"
|
|
4528
4702
|
],
|
|
4529
|
-
"name": "rule-inset-end"
|
|
4703
|
+
"name": "rule-inset-end",
|
|
4704
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4705
|
+
"runtime_flag_status": "stable"
|
|
4530
4706
|
},
|
|
4531
4707
|
{
|
|
4532
4708
|
"longhands": [
|
|
@@ -4535,7 +4711,9 @@ export const generatedProperties = [
|
|
|
4535
4711
|
"column-rule-inset-junction-start",
|
|
4536
4712
|
"column-rule-inset-junction-end"
|
|
4537
4713
|
],
|
|
4538
|
-
"name": "rule-inset-junction"
|
|
4714
|
+
"name": "rule-inset-junction",
|
|
4715
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4716
|
+
"runtime_flag_status": "stable"
|
|
4539
4717
|
},
|
|
4540
4718
|
{
|
|
4541
4719
|
"longhands": [
|
|
@@ -4544,7 +4722,9 @@ export const generatedProperties = [
|
|
|
4544
4722
|
"row-rule-inset-cap-start",
|
|
4545
4723
|
"row-rule-inset-junction-start"
|
|
4546
4724
|
],
|
|
4547
|
-
"name": "rule-inset-start"
|
|
4725
|
+
"name": "rule-inset-start",
|
|
4726
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4727
|
+
"runtime_flag_status": "stable"
|
|
4548
4728
|
},
|
|
4549
4729
|
{
|
|
4550
4730
|
"inherited": false,
|
|
@@ -4552,28 +4732,36 @@ export const generatedProperties = [
|
|
|
4552
4732
|
"row-over-column",
|
|
4553
4733
|
"column-over-row"
|
|
4554
4734
|
],
|
|
4555
|
-
"name": "rule-overlap"
|
|
4735
|
+
"name": "rule-overlap",
|
|
4736
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4737
|
+
"runtime_flag_status": "stable"
|
|
4556
4738
|
},
|
|
4557
4739
|
{
|
|
4558
4740
|
"longhands": [
|
|
4559
4741
|
"column-rule-style",
|
|
4560
4742
|
"row-rule-style"
|
|
4561
4743
|
],
|
|
4562
|
-
"name": "rule-style"
|
|
4744
|
+
"name": "rule-style",
|
|
4745
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4746
|
+
"runtime_flag_status": "stable"
|
|
4563
4747
|
},
|
|
4564
4748
|
{
|
|
4565
4749
|
"longhands": [
|
|
4566
4750
|
"column-rule-visibility-items",
|
|
4567
4751
|
"row-rule-visibility-items"
|
|
4568
4752
|
],
|
|
4569
|
-
"name": "rule-visibility-items"
|
|
4753
|
+
"name": "rule-visibility-items",
|
|
4754
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4755
|
+
"runtime_flag_status": "stable"
|
|
4570
4756
|
},
|
|
4571
4757
|
{
|
|
4572
4758
|
"longhands": [
|
|
4573
4759
|
"column-rule-width",
|
|
4574
4760
|
"row-rule-width"
|
|
4575
4761
|
],
|
|
4576
|
-
"name": "rule-width"
|
|
4762
|
+
"name": "rule-width",
|
|
4763
|
+
"runtime_flag": "CSSGapDecoration",
|
|
4764
|
+
"runtime_flag_status": "stable"
|
|
4577
4765
|
},
|
|
4578
4766
|
{
|
|
4579
4767
|
"keywords": [
|
|
@@ -4595,7 +4783,9 @@ export const generatedProperties = [
|
|
|
4595
4783
|
"auto",
|
|
4596
4784
|
"none"
|
|
4597
4785
|
],
|
|
4598
|
-
"name": "scroll-axis-lock"
|
|
4786
|
+
"name": "scroll-axis-lock",
|
|
4787
|
+
"runtime_flag": "ScrollAxisLock",
|
|
4788
|
+
"runtime_flag_status": "experimental"
|
|
4599
4789
|
},
|
|
4600
4790
|
{
|
|
4601
4791
|
"keywords": [
|
|
@@ -4609,7 +4799,9 @@ export const generatedProperties = [
|
|
|
4609
4799
|
"none",
|
|
4610
4800
|
"nearest"
|
|
4611
4801
|
],
|
|
4612
|
-
"name": "scroll-initial-target"
|
|
4802
|
+
"name": "scroll-initial-target",
|
|
4803
|
+
"runtime_flag": "CSSScrollInitialTarget",
|
|
4804
|
+
"runtime_flag_status": "stable"
|
|
4613
4805
|
},
|
|
4614
4806
|
{
|
|
4615
4807
|
"longhands": [
|
|
@@ -4664,7 +4856,9 @@ export const generatedProperties = [
|
|
|
4664
4856
|
"after",
|
|
4665
4857
|
"before"
|
|
4666
4858
|
],
|
|
4667
|
-
"name": "scroll-marker-group"
|
|
4859
|
+
"name": "scroll-marker-group",
|
|
4860
|
+
"runtime_flag": "CSSPseudoScrollMarkers",
|
|
4861
|
+
"runtime_flag_status": "stable"
|
|
4668
4862
|
},
|
|
4669
4863
|
{
|
|
4670
4864
|
"longhands": [
|
|
@@ -4771,7 +4965,9 @@ export const generatedProperties = [
|
|
|
4771
4965
|
"none",
|
|
4772
4966
|
"auto"
|
|
4773
4967
|
],
|
|
4774
|
-
"name": "scroll-target-group"
|
|
4968
|
+
"name": "scroll-target-group",
|
|
4969
|
+
"runtime_flag": "CSSScrollTargetGroup",
|
|
4970
|
+
"runtime_flag_status": "stable"
|
|
4775
4971
|
},
|
|
4776
4972
|
{
|
|
4777
4973
|
"longhands": [
|
|
@@ -4794,7 +4990,9 @@ export const generatedProperties = [
|
|
|
4794
4990
|
"keywords": [
|
|
4795
4991
|
"auto"
|
|
4796
4992
|
],
|
|
4797
|
-
"name": "scrollbar-color"
|
|
4993
|
+
"name": "scrollbar-color",
|
|
4994
|
+
"runtime_flag": "ScrollbarColor",
|
|
4995
|
+
"runtime_flag_status": "stable"
|
|
4798
4996
|
},
|
|
4799
4997
|
{
|
|
4800
4998
|
"inherited": false,
|
|
@@ -4812,12 +5010,16 @@ export const generatedProperties = [
|
|
|
4812
5010
|
"thin",
|
|
4813
5011
|
"none"
|
|
4814
5012
|
],
|
|
4815
|
-
"name": "scrollbar-width"
|
|
5013
|
+
"name": "scrollbar-width",
|
|
5014
|
+
"runtime_flag": "ScrollbarWidth",
|
|
5015
|
+
"runtime_flag_status": "stable"
|
|
4816
5016
|
},
|
|
4817
5017
|
{
|
|
4818
5018
|
"is_descriptor": true,
|
|
4819
5019
|
"is_property": false,
|
|
4820
|
-
"name": "search"
|
|
5020
|
+
"name": "search",
|
|
5021
|
+
"runtime_flag": "RouteMatching",
|
|
5022
|
+
"runtime_flag_status": "experimental"
|
|
4821
5023
|
},
|
|
4822
5024
|
{
|
|
4823
5025
|
"name": "shape-image-threshold"
|
|
@@ -5086,7 +5288,9 @@ export const generatedProperties = [
|
|
|
5086
5288
|
"end",
|
|
5087
5289
|
"all"
|
|
5088
5290
|
],
|
|
5089
|
-
"name": "text-decoration-skip-spaces"
|
|
5291
|
+
"name": "text-decoration-skip-spaces",
|
|
5292
|
+
"runtime_flag": "CSSTextDecorationSkipSpaces",
|
|
5293
|
+
"runtime_flag_status": "experimental"
|
|
5090
5294
|
},
|
|
5091
5295
|
{
|
|
5092
5296
|
"keywords": [
|
|
@@ -5131,7 +5335,9 @@ export const generatedProperties = [
|
|
|
5131
5335
|
},
|
|
5132
5336
|
{
|
|
5133
5337
|
"inherited": true,
|
|
5134
|
-
"name": "text-fit"
|
|
5338
|
+
"name": "text-fit",
|
|
5339
|
+
"runtime_flag": "CssTextFit",
|
|
5340
|
+
"runtime_flag_status": "stable"
|
|
5135
5341
|
},
|
|
5136
5342
|
{
|
|
5137
5343
|
"inherited": true,
|
|
@@ -5194,7 +5400,9 @@ export const generatedProperties = [
|
|
|
5194
5400
|
"text-autospace",
|
|
5195
5401
|
"text-spacing-trim"
|
|
5196
5402
|
],
|
|
5197
|
-
"name": "text-spacing"
|
|
5403
|
+
"name": "text-spacing",
|
|
5404
|
+
"runtime_flag": "CSSTextSpacing",
|
|
5405
|
+
"runtime_flag_status": "test"
|
|
5198
5406
|
},
|
|
5199
5407
|
{
|
|
5200
5408
|
"inherited": true,
|
|
@@ -5279,54 +5487,72 @@ export const generatedProperties = [
|
|
|
5279
5487
|
"timeline-trigger-active-range-start",
|
|
5280
5488
|
"timeline-trigger-active-range-end"
|
|
5281
5489
|
],
|
|
5282
|
-
"name": "timeline-trigger"
|
|
5490
|
+
"name": "timeline-trigger",
|
|
5491
|
+
"runtime_flag": "TimelineTrigger",
|
|
5492
|
+
"runtime_flag_status": "stable"
|
|
5283
5493
|
},
|
|
5284
5494
|
{
|
|
5285
5495
|
"longhands": [
|
|
5286
5496
|
"timeline-trigger-activation-range-start",
|
|
5287
5497
|
"timeline-trigger-activation-range-end"
|
|
5288
5498
|
],
|
|
5289
|
-
"name": "timeline-trigger-activation-range"
|
|
5499
|
+
"name": "timeline-trigger-activation-range",
|
|
5500
|
+
"runtime_flag": "TimelineTrigger",
|
|
5501
|
+
"runtime_flag_status": "stable"
|
|
5290
5502
|
},
|
|
5291
5503
|
{
|
|
5292
|
-
"name": "timeline-trigger-activation-range-end"
|
|
5504
|
+
"name": "timeline-trigger-activation-range-end",
|
|
5505
|
+
"runtime_flag": "TimelineTrigger",
|
|
5506
|
+
"runtime_flag_status": "stable"
|
|
5293
5507
|
},
|
|
5294
5508
|
{
|
|
5295
|
-
"name": "timeline-trigger-activation-range-start"
|
|
5509
|
+
"name": "timeline-trigger-activation-range-start",
|
|
5510
|
+
"runtime_flag": "TimelineTrigger",
|
|
5511
|
+
"runtime_flag_status": "stable"
|
|
5296
5512
|
},
|
|
5297
5513
|
{
|
|
5298
5514
|
"longhands": [
|
|
5299
5515
|
"timeline-trigger-active-range-start",
|
|
5300
5516
|
"timeline-trigger-active-range-end"
|
|
5301
5517
|
],
|
|
5302
|
-
"name": "timeline-trigger-active-range"
|
|
5518
|
+
"name": "timeline-trigger-active-range",
|
|
5519
|
+
"runtime_flag": "TimelineTrigger",
|
|
5520
|
+
"runtime_flag_status": "stable"
|
|
5303
5521
|
},
|
|
5304
5522
|
{
|
|
5305
5523
|
"keywords": [
|
|
5306
5524
|
"auto",
|
|
5307
5525
|
"normal"
|
|
5308
5526
|
],
|
|
5309
|
-
"name": "timeline-trigger-active-range-end"
|
|
5527
|
+
"name": "timeline-trigger-active-range-end",
|
|
5528
|
+
"runtime_flag": "TimelineTrigger",
|
|
5529
|
+
"runtime_flag_status": "stable"
|
|
5310
5530
|
},
|
|
5311
5531
|
{
|
|
5312
5532
|
"keywords": [
|
|
5313
5533
|
"auto",
|
|
5314
5534
|
"normal"
|
|
5315
5535
|
],
|
|
5316
|
-
"name": "timeline-trigger-active-range-start"
|
|
5536
|
+
"name": "timeline-trigger-active-range-start",
|
|
5537
|
+
"runtime_flag": "TimelineTrigger",
|
|
5538
|
+
"runtime_flag_status": "stable"
|
|
5317
5539
|
},
|
|
5318
5540
|
{
|
|
5319
5541
|
"keywords": [
|
|
5320
5542
|
"none"
|
|
5321
5543
|
],
|
|
5322
|
-
"name": "timeline-trigger-name"
|
|
5544
|
+
"name": "timeline-trigger-name",
|
|
5545
|
+
"runtime_flag": "TimelineTrigger",
|
|
5546
|
+
"runtime_flag_status": "stable"
|
|
5323
5547
|
},
|
|
5324
5548
|
{
|
|
5325
5549
|
"keywords": [
|
|
5326
5550
|
"none",
|
|
5327
5551
|
"auto"
|
|
5328
5552
|
],
|
|
5329
|
-
"name": "timeline-trigger-source"
|
|
5553
|
+
"name": "timeline-trigger-source",
|
|
5554
|
+
"runtime_flag": "TimelineTrigger",
|
|
5555
|
+
"runtime_flag_status": "stable"
|
|
5330
5556
|
},
|
|
5331
5557
|
{
|
|
5332
5558
|
"keywords": [
|
|
@@ -5428,7 +5654,9 @@ export const generatedProperties = [
|
|
|
5428
5654
|
"none",
|
|
5429
5655
|
"all"
|
|
5430
5656
|
],
|
|
5431
|
-
"name": "trigger-scope"
|
|
5657
|
+
"name": "trigger-scope",
|
|
5658
|
+
"runtime_flag": "AnimationTrigger",
|
|
5659
|
+
"runtime_flag_status": "stable"
|
|
5432
5660
|
},
|
|
5433
5661
|
{
|
|
5434
5662
|
"is_descriptor": true,
|