devtools-protocol 0.0.1402036 → 0.0.1403386

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.
@@ -1898,7 +1898,7 @@
1898
1898
  },
1899
1899
  {
1900
1900
  "id": "SelectElementAccessibilityIssueDetails",
1901
- "description": "This isue warns about errors in the select element content model.",
1901
+ "description": "This issue warns about errors in the select element content model.",
1902
1902
  "type": "object",
1903
1903
  "properties": [
1904
1904
  {
@@ -4837,6 +4837,29 @@
4837
4837
  }
4838
4838
  ]
4839
4839
  },
4840
+ {
4841
+ "name": "getLonghandProperties",
4842
+ "experimental": true,
4843
+ "parameters": [
4844
+ {
4845
+ "name": "shorthandName",
4846
+ "type": "string"
4847
+ },
4848
+ {
4849
+ "name": "value",
4850
+ "type": "string"
4851
+ }
4852
+ ],
4853
+ "returns": [
4854
+ {
4855
+ "name": "longhandProperties",
4856
+ "type": "array",
4857
+ "items": {
4858
+ "$ref": "CSSProperty"
4859
+ }
4860
+ }
4861
+ ]
4862
+ },
4840
4863
  {
4841
4864
  "name": "getInlineStylesForNode",
4842
4865
  "description": "Returns the styles defined inline (explicitly in the \"style\" attribute and implicitly, using DOM\nattributes) for a DOM node identified by `nodeId`.",
@@ -16052,7 +16075,8 @@
16052
16075
  "BadResponse",
16053
16076
  "InternalError",
16054
16077
  "UnknownError",
16055
- "FulfilledLocally"
16078
+ "FulfilledLocally",
16079
+ "SiteIssuerLimit"
16056
16080
  ]
16057
16081
  },
16058
16082
  {
@@ -21738,7 +21762,6 @@
21738
21762
  "description": "Enum of possible storage types.",
21739
21763
  "type": "string",
21740
21764
  "enum": [
21741
- "appcache",
21742
21765
  "cookies",
21743
21766
  "file_systems",
21744
21767
  "indexeddb",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1402036",
3
+ "version": "0.0.1403386",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -992,14 +992,13 @@ experimental domain Audits
992
992
  InteractiveContentOptionChild
993
993
  InteractiveContentLegendChild
994
994
 
995
- # This isue warns about errors in the select element content model.
995
+ # This issue warns about errors in the select element content model.
996
996
  type SelectElementAccessibilityIssueDetails extends object
997
997
  properties
998
998
  DOM.BackendNodeId nodeId
999
999
  SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
1000
1000
  boolean hasDisallowedAttributes
1001
1001
 
1002
-
1003
1002
  type StyleSheetLoadingIssueReason extends string
1004
1003
  enum
1005
1004
  LateImportRule
@@ -2327,6 +2326,13 @@ experimental domain CSS
2327
2326
  returns
2328
2327
  array of string results
2329
2328
 
2329
+ experimental command getLonghandProperties
2330
+ parameters
2331
+ string shorthandName
2332
+ string value
2333
+ returns
2334
+ array of CSSProperty longhandProperties
2335
+
2330
2336
  # Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
2331
2337
  # attributes) for a DOM node identified by `nodeId`.
2332
2338
  command getInlineStylesForNode
@@ -7429,6 +7435,7 @@ domain Network
7429
7435
  InternalError
7430
7436
  UnknownError
7431
7437
  FulfilledLocally
7438
+ SiteIssuerLimit
7432
7439
  TrustTokenOperationType type
7433
7440
  RequestId requestId
7434
7441
  # Top level origin. The context in which the operation was attempted.
@@ -10253,7 +10260,6 @@ experimental domain Storage
10253
10260
  # Enum of possible storage types.
10254
10261
  type StorageType extends string
10255
10262
  enum
10256
- appcache
10257
10263
  cookies
10258
10264
  file_systems
10259
10265
  indexeddb
@@ -1835,6 +1835,10 @@ export namespace ProtocolMapping {
1835
1835
  paramsType: [Protocol.CSS.ResolveValuesRequest];
1836
1836
  returnType: Protocol.CSS.ResolveValuesResponse;
1837
1837
  };
1838
+ 'CSS.getLonghandProperties': {
1839
+ paramsType: [Protocol.CSS.GetLonghandPropertiesRequest];
1840
+ returnType: Protocol.CSS.GetLonghandPropertiesResponse;
1841
+ };
1838
1842
  /**
1839
1843
  * Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
1840
1844
  * attributes) for a DOM node identified by `nodeId`.
@@ -1074,6 +1074,8 @@ export namespace ProtocolProxyApi {
1074
1074
  */
1075
1075
  resolveValues(params: Protocol.CSS.ResolveValuesRequest): Promise<Protocol.CSS.ResolveValuesResponse>;
1076
1076
 
1077
+ getLonghandProperties(params: Protocol.CSS.GetLonghandPropertiesRequest): Promise<Protocol.CSS.GetLonghandPropertiesResponse>;
1078
+
1077
1079
  /**
1078
1080
  * Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
1079
1081
  * attributes) for a DOM node identified by `nodeId`.
@@ -1142,6 +1142,8 @@ export namespace ProtocolTestsProxyApi {
1142
1142
  */
1143
1143
  resolveValues(params: Protocol.CSS.ResolveValuesRequest): Promise<{id: number, result: Protocol.CSS.ResolveValuesResponse, sessionId: string}>;
1144
1144
 
1145
+ getLonghandProperties(params: Protocol.CSS.GetLonghandPropertiesRequest): Promise<{id: number, result: Protocol.CSS.GetLonghandPropertiesResponse, sessionId: string}>;
1146
+
1145
1147
  /**
1146
1148
  * Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
1147
1149
  * attributes) for a DOM node identified by `nodeId`.
@@ -3654,7 +3654,7 @@ export namespace Protocol {
3654
3654
  export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
3655
3655
 
3656
3656
  /**
3657
- * This isue warns about errors in the select element content model.
3657
+ * This issue warns about errors in the select element content model.
3658
3658
  */
3659
3659
  export interface SelectElementAccessibilityIssueDetails {
3660
3660
  nodeId: DOM.BackendNodeId;
@@ -5564,6 +5564,15 @@ export namespace Protocol {
5564
5564
  results: string[];
5565
5565
  }
5566
5566
 
5567
+ export interface GetLonghandPropertiesRequest {
5568
+ shorthandName: string;
5569
+ value: string;
5570
+ }
5571
+
5572
+ export interface GetLonghandPropertiesResponse {
5573
+ longhandProperties: CSSProperty[];
5574
+ }
5575
+
5567
5576
  export interface GetInlineStylesForNodeRequest {
5568
5577
  nodeId: DOM.NodeId;
5569
5578
  }
@@ -12703,6 +12712,7 @@ export namespace Protocol {
12703
12712
  InternalError = 'InternalError',
12704
12713
  UnknownError = 'UnknownError',
12705
12714
  FulfilledLocally = 'FulfilledLocally',
12715
+ SiteIssuerLimit = 'SiteIssuerLimit',
12706
12716
  }
12707
12717
 
12708
12718
  /**
@@ -12718,7 +12728,7 @@ export namespace Protocol {
12718
12728
  * of the operation already exists und thus, the operation was abort
12719
12729
  * preemptively (e.g. a cache hit). (TrustTokenOperationDoneEventStatus enum)
12720
12730
  */
12721
- status: ('Ok' | 'InvalidArgument' | 'MissingIssuerKeys' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'ResourceLimited' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally');
12731
+ status: ('Ok' | 'InvalidArgument' | 'MissingIssuerKeys' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'ResourceLimited' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally' | 'SiteIssuerLimit');
12722
12732
  type: TrustTokenOperationType;
12723
12733
  requestId: RequestId;
12724
12734
  /**
@@ -16022,7 +16032,7 @@ export namespace Protocol {
16022
16032
  /**
16023
16033
  * Enum of possible storage types.
16024
16034
  */
16025
- export type StorageType = ('appcache' | 'cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
16035
+ export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
16026
16036
 
16027
16037
  /**
16028
16038
  * Usage for a storage type.