tor-browser

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

border-spacing.mjs (717B)


      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 // InactivePropertyHelper `border-spacing` test cases.
      6 export default [
      7  {
      8    info: "border-spacing is inactive on a table with collapsed borders",
      9    property: "border-spacing",
     10    tagName: "table",
     11    rules: ["table { border-collapse: collapse; border-spacing: 10px; }"],
     12    isActive: false,
     13  },
     14  {
     15    info: "border-spacing is active on a table with separated borders",
     16    property: "border-spacing",
     17    tagName: "table",
     18    rules: ["table { border-spacing: 10px; }"],
     19    isActive: true,
     20  },
     21 ];