49f25e2412
This corresponds to Chromium 87.0.4272.0 This roll includes: - Reland "idle-detection: Implement requestPermission() method" (crrev.com/c/2417779)
4.2 KiB
4.2 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). |
gridBackgroundColor | DOM.RGBA | The grid container background color (Default: transparent). |
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). |