tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

BuiltInStyleSheetList.h (1603B)


      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_, flags_)
     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 * flags_
     19 *   UserStyleSheetType indicating whether the sheet can be safely placed in
     20 *   shared memory, and the kind of sheet it is.
     21 */
     22 
     23 STYLE_SHEET(ContentEditable, "resource://gre/res/contenteditable.css", UA)
     24 STYLE_SHEET(CounterStyles, "resource://gre-resources/counterstyles.css", UA)
     25 STYLE_SHEET(Forms, "resource://gre-resources/forms.css", UA)
     26 STYLE_SHEET(HTML, "resource://gre-resources/html.css", UA)
     27 STYLE_SHEET(MathML, "resource://gre-resources/mathml.css", UA)
     28 STYLE_SHEET(NoFrames, "resource://gre-resources/noframes.css", UA)
     29 STYLE_SHEET(Quirk, "resource://gre-resources/quirk.css", UA)
     30 STYLE_SHEET(Scrollbars, "resource://gre-resources/scrollbars.css", UA)
     31 STYLE_SHEET(SVG, "resource://gre/res/svg.css", UA)
     32 STYLE_SHEET(UA, "resource://gre-resources/ua.css", UA)
     33 STYLE_SHEET(XUL, "chrome://global/content/xul.css", UAUnshared)
     34 STYLE_SHEET(AccessibleCaret, "resource://gre-resources/accessiblecaret.css",
     35            Author)
     36 STYLE_SHEET(Details, "resource://gre-resources/details.css", Author)