devtools-protocol 0.0.1315554 → 0.0.1317198
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.
@@ -2711,6 +2711,12 @@
|
|
2711
2711
|
"optional": true,
|
2712
2712
|
"type": "boolean"
|
2713
2713
|
},
|
2714
|
+
{
|
2715
|
+
"name": "allowWithoutGesture",
|
2716
|
+
"description": "For \"fullscreen\" permission, must specify allowWithoutGesture:true.",
|
2717
|
+
"optional": true,
|
2718
|
+
"type": "boolean"
|
2719
|
+
},
|
2714
2720
|
{
|
2715
2721
|
"name": "panTiltZoom",
|
2716
2722
|
"description": "For \"camera\" permission, may specify panTiltZoom.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1367,6 +1367,8 @@ domain Browser
|
|
1367
1367
|
optional boolean userVisibleOnly
|
1368
1368
|
# For "clipboard" permission, may specify allowWithoutSanitization.
|
1369
1369
|
optional boolean allowWithoutSanitization
|
1370
|
+
# For "fullscreen" permission, must specify allowWithoutGesture:true.
|
1371
|
+
optional boolean allowWithoutGesture
|
1370
1372
|
# For "camera" permission, may specify panTiltZoom.
|
1371
1373
|
optional boolean panTiltZoom
|
1372
1374
|
|
package/types/protocol.d.ts
CHANGED
@@ -4087,6 +4087,10 @@ export namespace Protocol {
|
|
4087
4087
|
* For "clipboard" permission, may specify allowWithoutSanitization.
|
4088
4088
|
*/
|
4089
4089
|
allowWithoutSanitization?: boolean;
|
4090
|
+
/**
|
4091
|
+
* For "fullscreen" permission, must specify allowWithoutGesture:true.
|
4092
|
+
*/
|
4093
|
+
allowWithoutGesture?: boolean;
|
4090
4094
|
/**
|
4091
4095
|
* For "camera" permission, may specify panTiltZoom.
|
4092
4096
|
*/
|