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/. */
6 
7 /* list of user agent style sheets that GlobalStyleSheetCache manages */
8 
9 /*
10  * STYLE_SHEET(identifier_, url_, shared_)
11  *
12  * identifier_
13  *   An identifier for the style sheet, suitable for use as an enum class value.
14  *
15  * url_
16  *   The URL of the style sheet.
17  *
18  * shared_
19  *   A boolean indicating whether the sheet can be safely placed in shared
20  *   memory.
21  */
22 
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(MinimalXUL, "chrome://global/content/minimal-xul.css", true)
30 STYLE_SHEET(NoFrames, "resource://gre-resources/noframes.css", true)
31 STYLE_SHEET(NoScript, "resource://gre-resources/noscript.css", true)
32 STYLE_SHEET(Quirk, "resource://gre-resources/quirk.css", true)
33 STYLE_SHEET(Scrollbars, "resource://gre-resources/scrollbars.css", true)
34 STYLE_SHEET(SVG, "resource://gre/res/svg.css", true)
35 STYLE_SHEET(UA, "resource://gre-resources/ua.css", true)
36 STYLE_SHEET(XUL, "chrome://global/content/xul.css", false)
37