Bug 1839526 [wpt PR 40658] - Update wpt metadata, a=testonly
[gecko.git] / layout / style / UserAgentStyleSheetList.h
blob18de1d0a26ebc62a3b1a5fe853c2ca6b032d0bcf
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* list of user agent style sheets that GlobalStyleSheetCache manages */
9 /*
10 * STYLE_SHEET(identifier_, url_, shared_)
12 * identifier_
13 * An identifier for the style sheet, suitable for use as an enum class value.
15 * url_
16 * The URL of the style sheet.
18 * shared_
19 * A boolean indicating whether the sheet can be safely placed in shared
20 * memory.
23 STYLE_SHEET(ContentEditable, "resource://gre/res/contenteditable.css", true)
24 STYLE_SHEET(CounterStyles, "resource://gre-resources/counterstyles.css", true)
25 STYLE_SHEET(DesignMode, "resource://gre/res/designmode.css", true)
26 STYLE_SHEET(Forms, "resource://gre-resources/forms.css", true)
27 STYLE_SHEET(HTML, "resource://gre-resources/html.css", true)
28 STYLE_SHEET(MathML, "resource://gre-resources/mathml.css", true)
29 STYLE_SHEET(NoFrames, "resource://gre-resources/noframes.css", true)
30 STYLE_SHEET(Quirk, "resource://gre-resources/quirk.css", true)
31 STYLE_SHEET(Scrollbars, "resource://gre-resources/scrollbars.css", true)
32 STYLE_SHEET(SVG, "resource://gre/res/svg.css", true)
33 STYLE_SHEET(UA, "resource://gre-resources/ua.css", true)
34 STYLE_SHEET(XUL, "chrome://global/content/xul.css", false)