tor-browser

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

constants.js (878B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 "use strict";
      6 
      7 // Compatibility tooltip message id shared between the
      8 // models/text-property.js and the tooltip tests
      9 exports.COMPATIBILITY_TOOLTIP_MESSAGE = {
     10  default: "css-compatibility-default-message",
     11  deprecated: "css-compatibility-deprecated-message",
     12  "deprecated-experimental":
     13    "css-compatibility-deprecated-experimental-message",
     14  "deprecated-experimental-supported":
     15    "css-compatibility-deprecated-experimental-supported-message",
     16  "deprecated-supported": "css-compatibility-deprecated-supported-message",
     17  experimental: "css-compatibility-experimental-message",
     18  "experimental-supported": "css-compatibility-experimental-supported-message",
     19 };