|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1697629 — _2026-09-14T23:38:30.000Z_ |
| 4 | +###### Diff: [`f395a59...4a83b76`](https://github.com/ChromeDevTools/devtools-protocol/compare/f395a59...4a83b76) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/DOM.pdl:845 @@ domain DOM |
| 8 | + # If true, opens and holds interest. If false, releases forced interest. |
| 9 | + boolean enable |
| 10 | + |
| 11 | ++ # Sets a spelling or grammar error marker on the given range of text. |
| 12 | ++ # See https://github.com/Igalia/explainers/blob/main/force-spelling-grammar-markers/README.md |
| 13 | ++ # Note: exactly one between nodeId, backendNodeId and objectId should be passed |
| 14 | ++ # to identify the node. |
| 15 | ++ experimental command setTextMarker |
| 16 | ++ parameters |
| 17 | ++ # Identifier of the node. |
| 18 | ++ optional NodeId nodeId |
| 19 | ++ # Identifier of the backend node. |
| 20 | ++ optional BackendNodeId backendNodeId |
| 21 | ++ # JavaScript object id of the node wrapper. |
| 22 | ++ optional Runtime.RemoteObjectId objectId |
| 23 | ++ # The type of marker to set on the given range of text. |
| 24 | ++ enum type |
| 25 | ++ # A spelling error marker, rendered as ::spelling-error |
| 26 | ++ spelling |
| 27 | ++ # A grammar error marker, rendered as ::grammar-error |
| 28 | ++ grammar |
| 29 | ++ # Start offset into the element's rendered text in UTF-16 code units. |
| 30 | ++ # For a text control, an offset into the control's value. |
| 31 | ++ # Offsets count text in DOM order and do not enter shadow trees. |
| 32 | ++ # To mark text inside a shadow tree, pass the element inside the shadow tree. |
| 33 | ++ integer start |
| 34 | ++ # End offset (exclusive) in the same units and space as start. |
| 35 | ++ integer end |
| 36 | ++ |
| 37 | ++ # Clears the spelling and grammar error text markers overlapping the ranges |
| 38 | ++ # set by setTextMarker in this session. These markers are also removed when |
| 39 | ++ # the DOM domain is disabled or the session ends. |
| 40 | ++ experimental command clearTextMarkers |
| 41 | ++ |
| 42 | + # Fired when `Element`'s attribute is modified. |
| 43 | + event attributeModified |
| 44 | + parameters |
| 45 | +``` |
| 46 | + |
3 | 47 | ## Roll protocol to r1696802 — _2026-09-12T04:34:27.000Z_ |
4 | | -###### Diff: [`9b417d8...4c6a7e5`](https://github.com/ChromeDevTools/devtools-protocol/compare/9b417d8...4c6a7e5) |
| 48 | +###### Diff: [`9b417d8...f395a59`](https://github.com/ChromeDevTools/devtools-protocol/compare/9b417d8...f395a59) |
5 | 49 |
|
6 | 50 | ```diff |
7 | 51 | @@ domains/Audits.pdl:741 @@ experimental domain Audits |
@@ -43533,18 +43577,4 @@ index 4754f17c..8dad9c98 100644 |
43533 | 43577 | # Refined HTTP request headers that were actually transmitted over the network. |
43534 | 43578 | optional Headers requestHeaders |
43535 | 43579 | # HTTP request headers text. This has been replaced by the headers in Network.requestWillBeSentExtraInfo. |
43536 | | -``` |
43537 | | - |
43538 | | -## Roll protocol to r1245094 — _2024-01-10T04:27:17.000Z_ |
43539 | | -###### Diff: [`91ab8a2...fcea28f`](https://github.com/ChromeDevTools/devtools-protocol/compare/91ab8a2...fcea28f) |
43540 | | - |
43541 | | -```diff |
43542 | | -@@ browser_protocol.pdl:8907 @@ domain Page |
43543 | | - WebSocketSticky |
43544 | | - SmartCard |
43545 | | - LiveMediaStreamTrack |
43546 | | -+ UnloadHandler |
43547 | | - # Disabled for RenderFrameHost reasons |
43548 | | - # See content/browser/renderer_host/back_forward_cache_disable.h for explanations. |
43549 | | - ContentSecurityHandler |
43550 | 43580 | ``` |
0 commit comments