22 lines
839 B
JavaScript
22 lines
839 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
export const TYPES = {
|
|
ACCESSIBLE: "AccessibleHighlighter",
|
|
BOXMODEL: "BoxModelHighlighter",
|
|
EYEDROPPER: "EyeDropper",
|
|
FLEXBOX: "FlexboxHighlighter",
|
|
FONTS: "FontsHighlighter",
|
|
GEOMETRY: "GeometryEditorHighlighter",
|
|
GRID: "CssGridHighlighter",
|
|
MEASURING: "MeasuringToolHighlighter",
|
|
PAUSED_DEBUGGER: "PausedDebuggerOverlay",
|
|
RULERS: "RulersHighlighter",
|
|
SHAPES: "ShapesHighlighter",
|
|
SELECTOR: "SelectorHighlighter",
|
|
TABBING_ORDER: "TabbingOrderHighlighter",
|
|
TRANSFORM: "CssTransformHighlighter",
|
|
VIEWPORT_SIZE: "ViewportSizeHighlighter",
|
|
VIEWPORT_SIZE_ON_RESIZE: "ViewportSizeOnResizeHighlighter",
|
|
};
|