devtools-protocol 0.0.1130274 → 0.0.1131670
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.
@@ -2900,6 +2900,13 @@
|
|
2900
2900
|
"name": "endColumn",
|
2901
2901
|
"description": "Column offset of the end of the stylesheet within the resource (zero based).",
|
2902
2902
|
"type": "number"
|
2903
|
+
},
|
2904
|
+
{
|
2905
|
+
"name": "loadingFailed",
|
2906
|
+
"description": "If the style sheet was loaded from a network resource, this indicates when the resource failed to load",
|
2907
|
+
"experimental": true,
|
2908
|
+
"optional": true,
|
2909
|
+
"type": "boolean"
|
2903
2910
|
}
|
2904
2911
|
]
|
2905
2912
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1412,6 +1412,8 @@ experimental domain CSS
|
|
1412
1412
|
number endLine
|
1413
1413
|
# Column offset of the end of the stylesheet within the resource (zero based).
|
1414
1414
|
number endColumn
|
1415
|
+
# If the style sheet was loaded from a network resource, this indicates when the resource failed to load
|
1416
|
+
experimental optional boolean loadingFailed
|
1415
1417
|
|
1416
1418
|
# CSS rule representation.
|
1417
1419
|
type CSSRule extends object
|
package/types/protocol.d.ts
CHANGED
@@ -4253,6 +4253,10 @@ export namespace Protocol {
|
|
4253
4253
|
* Column offset of the end of the stylesheet within the resource (zero based).
|
4254
4254
|
*/
|
4255
4255
|
endColumn: number;
|
4256
|
+
/**
|
4257
|
+
* If the style sheet was loaded from a network resource, this indicates when the resource failed to load
|
4258
|
+
*/
|
4259
|
+
loadingFailed?: boolean;
|
4256
4260
|
}
|
4257
4261
|
|
4258
4262
|
/**
|