Skip to content

Commit

Permalink
Roll protocol to r1336433
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Aug 2, 2024
1 parent 62fe5c9 commit 7daeda3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 70 deletions.
45 changes: 30 additions & 15 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,36 @@


## Roll protocol to r1336433 — _2024-08-02T04:28:52.000Z_
###### Diff: [`62fe5c9...befd4af`](https://github.com/ChromeDevTools/devtools-protocol/compare/62fe5c9...befd4af)

```diff
@@ browser_protocol.pdl:2030 @@ experimental domain CSS
# Associated style declaration.
CSSStyle style

- # CSS position-fallback rule representation.
- deprecated type CSSPositionFallbackRule extends object
- properties
- Value name
- # List of keyframes.
- array of CSSTryRule tryRules
-
# CSS @position-try rule representation.
type CSSPositionTryRule extends object
properties
@@ -2223,8 +2216,6 @@ experimental domain CSS
optional array of InheritedPseudoElementMatches inheritedPseudoElements
# A list of CSS keyframed animations matching this node.
optional array of CSSKeyframesRule cssKeyframesRules
- # A list of CSS position fallbacks matching this node.
- deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
# A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
optional array of CSSPositionTryRule cssPositionTryRules
# Index of the active fallback in the applied position-try-fallback property,
```

## Roll protocol to r1335233 — _2024-07-31T04:25:01.000Z_
###### Diff: [`a313e79...19a1f45`](https://github.com/ChromeDevTools/devtools-protocol/compare/a313e79...19a1f45)
###### Diff: [`a313e79...62fe5c9`](https://github.com/ChromeDevTools/devtools-protocol/compare/a313e79...62fe5c9)

```diff
@@ browser_protocol.pdl:1102 @@ experimental domain Audits
Expand Down Expand Up @@ -12235,18 +12264,4 @@ index 09c420e..bd277eb 100644
ErrorFetchingSignin
InvalidSigninResponse
AccountsHttpNotFound
```

## Roll protocol to r975963 — _2022-02-28T22:15:14.000Z_
###### Diff: [`a7bfbac...d232328`](https://github.com/ChromeDevTools/devtools-protocol/compare/a7bfbac...d232328)

```diff
@@ browser_protocol.pdl:490 @@ experimental domain Audits
WarnSameSiteStrictCrossDowngradeLax
WarnSameSiteLaxCrossDowngradeStrict
WarnSameSiteLaxCrossDowngradeLax
+ WarnAttributeValueExceedsMaxSize

type CookieOperation extends string
enum
```
30 changes: 0 additions & 30 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -4215,26 +4215,6 @@
}
]
},
{
"id": "CSSPositionFallbackRule",
"description": "CSS position-fallback rule representation.",
"deprecated": true,
"type": "object",
"properties": [
{
"name": "name",
"$ref": "Value"
},
{
"name": "tryRules",
"description": "List of keyframes.",
"type": "array",
"items": {
"$ref": "CSSTryRule"
}
}
]
},
{
"id": "CSSPositionTryRule",
"description": "CSS @position-try rule representation.",
Expand Down Expand Up @@ -4663,16 +4643,6 @@
"$ref": "CSSKeyframesRule"
}
},
{
"name": "cssPositionFallbackRules",
"description": "A list of CSS position fallbacks matching this node.",
"deprecated": true,
"optional": true,
"type": "array",
"items": {
"$ref": "CSSPositionFallbackRule"
}
},
{
"name": "cssPositionTryRules",
"description": "A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1335233",
"version": "0.0.1336433",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
9 changes: 0 additions & 9 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -2030,13 +2030,6 @@ experimental domain CSS
# Associated style declaration.
CSSStyle style

# CSS position-fallback rule representation.
deprecated type CSSPositionFallbackRule extends object
properties
Value name
# List of keyframes.
array of CSSTryRule tryRules

# CSS @position-try rule representation.
type CSSPositionTryRule extends object
properties
Expand Down Expand Up @@ -2223,8 +2216,6 @@ experimental domain CSS
optional array of InheritedPseudoElementMatches inheritedPseudoElements
# A list of CSS keyframed animations matching this node.
optional array of CSSKeyframesRule cssKeyframesRules
# A list of CSS position fallbacks matching this node.
deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
# A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
optional array of CSSPositionTryRule cssPositionTryRules
# Index of the active fallback in the applied position-try-fallback property,
Expand Down
15 changes: 0 additions & 15 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5144,17 +5144,6 @@ export namespace Protocol {
style: CSSStyle;
}

/**
* CSS position-fallback rule representation.
*/
export interface CSSPositionFallbackRule {
name: Value;
/**
* List of keyframes.
*/
tryRules: CSSTryRule[];
}

/**
* CSS @position-try rule representation.
*/
Expand Down Expand Up @@ -5440,10 +5429,6 @@ export namespace Protocol {
* A list of CSS keyframed animations matching this node.
*/
cssKeyframesRules?: CSSKeyframesRule[];
/**
* A list of CSS position fallbacks matching this node.
*/
cssPositionFallbackRules?: CSSPositionFallbackRule[];
/**
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
*/
Expand Down

0 comments on commit 7daeda3

Please sign in to comment.