mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
62ac167339
* roll Chromium to version 86, r800071 * roll Chrome DevTools protocol version to 0.0.799653 * fix HTTPRequest.continue after * CDP: accept post data in the binary form in Fetch.continueRequest. https://chromium-review.googlesource.com/c/chromium/src/+/2315239 * update new-docs
4.0 KiB
4.0 KiB
Home > puppeteer > Protocol > Overlay > GridHighlightConfig
Protocol.Overlay.GridHighlightConfig interface
Configuration data for the highlighting of Grid elements.
Signature:
export interface GridHighlightConfig
Properties
Property | Type | Description |
---|---|---|
areaBorderColor | DOM.RGBA | The named grid areas border color (Default: transparent). |
cellBorderColor | DOM.RGBA | The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead. |
cellBorderDash | boolean | Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead. |
columnGapColor | DOM.RGBA | The column gap highlight fill color (default: transparent). |
columnHatchColor | DOM.RGBA | The column gap hatching fill color (default: transparent). |
columnLineColor | DOM.RGBA | The column line color (default: transparent). |
columnLineDash | boolean | Whether column lines are dashed (default: false). |
gridBorderColor | DOM.RGBA | The grid container border highlight color (default: transparent). |
gridBorderDash | boolean | Whether the grid border is dashed (default: false). |
rowGapColor | DOM.RGBA | The row gap highlight fill color (default: transparent). |
rowHatchColor | DOM.RGBA | The row gap hatching fill color (default: transparent). |
rowLineColor | DOM.RGBA | The row line color (default: transparent). |
rowLineDash | boolean | Whether row lines are dashed (default: false). |
showAreaNames | boolean | Show area name labels (default: false). |
showGridExtensionLines | boolean | Whether the extension lines from grid cells to the rulers should be shown (default: false). |
showLineNames | boolean | Show line name labels (default: false). |
showNegativeLineNumbers | boolean | Show Negative line number labels (default: false). |
showPositiveLineNumbers | boolean | Show Positive line number labels (default: false). |
showTrackSizes | boolean | Show track size labels (default: false). |