mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e89e264a16
This corresponds to Chromium 85.0.4182.0. This roll includes: - Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure https://crrev.com/c/2231445 - [FlexNG] Enable FlexNG by default https://crrev.com/c/2216595 Closes #6151.
2.6 KiB
2.6 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 |
---|---|---|
cellBorderColor | DOM.RGBA | The cell border color (default: transparent). |
cellBorderDash | boolean | Whether the cell border is dashed (default: false). |
columnGapColor | DOM.RGBA | The column gap highlight fill color (default: transparent). |
columnHatchColor | DOM.RGBA | The column gap hatching fill 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). |
showGridExtensionLines | boolean | Whether the extension lines from grid cells to the rulers should be shown (default: false). |
showNegativeLineNumbers | boolean | Show Negative line number labels (default: false). |
showPositiveLineNumbers | boolean | Show Positive line number labels (default: false). |