|
1224 | 1224 | "description": "DOM debugging allows setting breakpoints on particular DOM operations and events. JavaScript\nexecution will stop on these operations as if there was a regular breakpoint set.", |
1225 | 1225 | "dependencies": [ |
1226 | 1226 | "DOM", |
1227 | | - "Debugger", |
1228 | 1227 | "Runtime" |
1229 | 1228 | ], |
1230 | 1229 | "types": [ |
|
1482 | 1481 | } |
1483 | 1482 | ] |
1484 | 1483 | }, |
| 1484 | + { |
| 1485 | + "id": "DevicePosture", |
| 1486 | + "type": "object", |
| 1487 | + "properties": [ |
| 1488 | + { |
| 1489 | + "name": "type", |
| 1490 | + "description": "Current posture of the device", |
| 1491 | + "type": "string", |
| 1492 | + "enum": [ |
| 1493 | + "continuous", |
| 1494 | + "folded" |
| 1495 | + ] |
| 1496 | + } |
| 1497 | + ] |
| 1498 | + }, |
1485 | 1499 | { |
1486 | 1500 | "id": "MediaFeature", |
1487 | 1501 | "type": "object", |
|
1614 | 1628 | "experimental": true, |
1615 | 1629 | "optional": true, |
1616 | 1630 | "$ref": "DisplayFeature" |
| 1631 | + }, |
| 1632 | + { |
| 1633 | + "name": "devicePosture", |
| 1634 | + "description": "If set, the posture of a foldable device. If not set the posture is set\nto continuous.", |
| 1635 | + "experimental": true, |
| 1636 | + "optional": true, |
| 1637 | + "$ref": "DevicePosture" |
1617 | 1638 | } |
1618 | 1639 | ] |
1619 | 1640 | }, |
|
1701 | 1722 | }, |
1702 | 1723 | { |
1703 | 1724 | "name": "acceptLanguage", |
1704 | | - "description": "Browser langugage to emulate.", |
| 1725 | + "description": "Browser language to emulate.", |
1705 | 1726 | "optional": true, |
1706 | 1727 | "type": "string" |
1707 | 1728 | }, |
|
1857 | 1878 | { |
1858 | 1879 | "name": "tiltX", |
1859 | 1880 | "description": "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)", |
1860 | | - "experimental": true, |
1861 | 1881 | "optional": true, |
1862 | | - "type": "integer" |
| 1882 | + "type": "number" |
1863 | 1883 | }, |
1864 | 1884 | { |
1865 | 1885 | "name": "tiltY", |
1866 | 1886 | "description": "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).", |
1867 | | - "experimental": true, |
1868 | 1887 | "optional": true, |
1869 | | - "type": "integer" |
| 1888 | + "type": "number" |
1870 | 1889 | }, |
1871 | 1890 | { |
1872 | 1891 | "name": "twist", |
|
2079 | 2098 | { |
2080 | 2099 | "name": "tiltX", |
2081 | 2100 | "description": "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0).", |
2082 | | - "experimental": true, |
2083 | 2101 | "optional": true, |
2084 | | - "type": "integer" |
| 2102 | + "type": "number" |
2085 | 2103 | }, |
2086 | 2104 | { |
2087 | 2105 | "name": "tiltY", |
2088 | 2106 | "description": "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).", |
2089 | | - "experimental": true, |
2090 | 2107 | "optional": true, |
2091 | | - "type": "integer" |
| 2108 | + "type": "number" |
2092 | 2109 | }, |
2093 | 2110 | { |
2094 | 2111 | "name": "twist", |
|
2962 | 2979 | "description": "Resource mimeType as determined by the browser.", |
2963 | 2980 | "type": "string" |
2964 | 2981 | }, |
| 2982 | + { |
| 2983 | + "name": "charset", |
| 2984 | + "description": "Resource charset as determined by the browser (if applicable).", |
| 2985 | + "type": "string" |
| 2986 | + }, |
2965 | 2987 | { |
2966 | 2988 | "name": "requestHeaders", |
2967 | 2989 | "description": "Refined HTTP request headers that were actually transmitted over the network.", |
|
3015 | 3037 | "optional": true, |
3016 | 3038 | "type": "boolean" |
3017 | 3039 | }, |
| 3040 | + { |
| 3041 | + "name": "serviceWorkerRouterInfo", |
| 3042 | + "description": "Infomation about how Service Worker Static Router was used.", |
| 3043 | + "experimental": true, |
| 3044 | + "optional": true, |
| 3045 | + "$ref": "ServiceWorkerRouterInfo" |
| 3046 | + }, |
3018 | 3047 | { |
3019 | 3048 | "name": "encodedDataLength", |
3020 | 3049 | "description": "Total number of bytes received for this request so far.", |
|
3288 | 3317 | "name": "sameParty", |
3289 | 3318 | "description": "True if cookie is SameParty.", |
3290 | 3319 | "experimental": true, |
| 3320 | + "deprecated": true, |
3291 | 3321 | "type": "boolean" |
3292 | 3322 | }, |
3293 | 3323 | { |
|
3728 | 3758 | }, |
3729 | 3759 | { |
3730 | 3760 | "name": "acceptLanguage", |
3731 | | - "description": "Browser langugage to emulate.", |
| 3761 | + "description": "Browser language to emulate.", |
3732 | 3762 | "optional": true, |
3733 | 3763 | "type": "string" |
3734 | 3764 | }, |
|
3772 | 3802 | "name": "encodedDataLength", |
3773 | 3803 | "description": "Actual bytes received (might be less than dataLength for compressed encodings).", |
3774 | 3804 | "type": "integer" |
| 3805 | + }, |
| 3806 | + { |
| 3807 | + "name": "data", |
| 3808 | + "description": "Data that was received. (Encoded as a base64 string when passed over JSON)", |
| 3809 | + "experimental": true, |
| 3810 | + "optional": true, |
| 3811 | + "type": "string" |
3775 | 3812 | } |
3776 | 3813 | ] |
3777 | 3814 | }, |
|
4959 | 4996 | "ReturnAsBase64", |
4960 | 4997 | "ReturnAsStream" |
4961 | 4998 | ] |
| 4999 | + }, |
| 5000 | + { |
| 5001 | + "name": "generateTaggedPDF", |
| 5002 | + "description": "Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.", |
| 5003 | + "experimental": true, |
| 5004 | + "optional": true, |
| 5005 | + "type": "boolean" |
| 5006 | + }, |
| 5007 | + { |
| 5008 | + "name": "generateDocumentOutline", |
| 5009 | + "description": "Whether or not to embed the document outline into the PDF.", |
| 5010 | + "experimental": true, |
| 5011 | + "optional": true, |
| 5012 | + "type": "boolean" |
4962 | 5013 | } |
4963 | 5014 | ], |
4964 | 5015 | "returns": [ |
|
7641 | 7692 | }, |
7642 | 7693 | { |
7643 | 7694 | "id": "SerializationOptions", |
7644 | | - "description": "Represents options for serialization. Overrides `generatePreview`, `returnByValue` and\n`generateWebDriverValue`.", |
| 7695 | + "description": "Represents options for serialization. Overrides `generatePreview` and `returnByValue`.", |
7645 | 7696 | "type": "object", |
7646 | 7697 | "properties": [ |
7647 | 7698 | { |
|
7698 | 7749 | "typedarray", |
7699 | 7750 | "arraybuffer", |
7700 | 7751 | "node", |
7701 | | - "window" |
| 7752 | + "window", |
| 7753 | + "generator" |
7702 | 7754 | ] |
7703 | 7755 | }, |
7704 | 7756 | { |
|
7800 | 7852 | "optional": true, |
7801 | 7853 | "type": "string" |
7802 | 7854 | }, |
7803 | | - { |
7804 | | - "name": "webDriverValue", |
7805 | | - "description": "Deprecated. Use `deepSerializedValue` instead. WebDriver BiDi representation of the value.", |
7806 | | - "deprecated": true, |
7807 | | - "optional": true, |
7808 | | - "$ref": "DeepSerializedValue" |
7809 | | - }, |
7810 | 7855 | { |
7811 | 7856 | "name": "deepSerializedValue", |
7812 | 7857 | "description": "Deep serialized value.", |
|
8240 | 8285 | "optional": true, |
8241 | 8286 | "type": "string" |
8242 | 8287 | }, |
8243 | | - { |
8244 | | - "name": "generateWebDriverValue", |
8245 | | - "description": "Deprecated. Use `serializationOptions: {serialization:\"deep\"}` instead.\nWhether the result should contain `webDriverValue`, serialized according to\nhttps://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but\nresulting `objectId` is still provided.", |
8246 | | - "deprecated": true, |
8247 | | - "optional": true, |
8248 | | - "type": "boolean" |
8249 | | - }, |
8250 | 8288 | { |
8251 | 8289 | "name": "serializationOptions", |
8252 | | - "description": "Specifies the result serialization. If provided, overrides\n`generatePreview`, `returnByValue` and `generateWebDriverValue`.", |
| 8290 | + "description": "Specifies the result serialization. If provided, overrides\n`generatePreview` and `returnByValue`.", |
8253 | 8291 | "experimental": true, |
8254 | 8292 | "optional": true, |
8255 | 8293 | "$ref": "SerializationOptions" |
|
8422 | 8460 | "optional": true, |
8423 | 8461 | "type": "string" |
8424 | 8462 | }, |
8425 | | - { |
8426 | | - "name": "generateWebDriverValue", |
8427 | | - "description": "Deprecated. Use `serializationOptions: {serialization:\"deep\"}` instead.\nWhether the result should contain `webDriverValue`, serialized\naccording to\nhttps://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but\nresulting `objectId` is still provided.", |
8428 | | - "deprecated": true, |
8429 | | - "optional": true, |
8430 | | - "type": "boolean" |
8431 | | - }, |
8432 | 8463 | { |
8433 | 8464 | "name": "serializationOptions", |
8434 | | - "description": "Specifies the result serialization. If provided, overrides\n`generatePreview`, `returnByValue` and `generateWebDriverValue`.", |
| 8465 | + "description": "Specifies the result serialization. If provided, overrides\n`generatePreview` and `returnByValue`.", |
8435 | 8466 | "experimental": true, |
8436 | 8467 | "optional": true, |
8437 | 8468 | "$ref": "SerializationOptions" |
|
0 commit comments