table-cell.mjs (653B)
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 `empty-cells` test cases. 6 export default [ 7 { 8 info: "empty-cells is inactive on block element", 9 property: "empty-cells", 10 tagName: "div", 11 rules: ["div { empty-cells: hide; }"], 12 isActive: false, 13 }, 14 { 15 info: "empty-cells is active on table cell element", 16 property: "empty-cells", 17 tagName: "div", 18 rules: ["div { display: table-cell; empty-cells: hide; }"], 19 isActive: true, 20 }, 21 ];