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/. */
5 // InactivePropertyHelper `align-content` test cases.
9 info: "margin is active on block containers",
12 rules: ["div { margin: 10px; }"],
16 info: "margin is active on flex containers",
19 rules: ["div { display: flex; margin: 10px; }"],
23 info: "margin is active on grid containers",
26 rules: ["div { display: grid; margin: 10px; }"],
30 info: "margin is active on tables",
33 rules: ["div { display: table; margin: 10px; }"],
37 info: "margin is active on inline tables",
40 rules: ["div { display: inline-table; margin: 10px; }"],
44 info: "margin is active on table captions",
47 rules: ["div { display: table-caption; margin: 10px; }"],
51 info: "margin is inactive on table cells",
54 rules: ["div { display: table-cell; margin: 10px; }"],
58 info: "margin-block is inactive on table cells",
59 property: "margin-block",
61 rules: ["div { display: table-cell; margin-block: 10px; }"],
65 info: "margin-block-start is inactive on table cells",
66 property: "margin-block-start",
68 rules: ["div { display: table-cell; margin-block-start: 10px; }"],
72 info: "margin-block-end is inactive on table cells",
73 property: "margin-block-end",
75 rules: ["div { display: table-cell; margin-block-end: 10px; }"],
79 info: "margin-block is inactive on table cells",
80 property: "margin-block",
82 rules: ["div { display: table-cell; margin-block: 10px; }"],
86 info: "margin-bottom is inactive on table rows",
87 property: "margin-bottom",
89 rules: ["div { display: table-row; margin-bottom: 10px; }"],
93 info: "margin-inline-start is inactive on table rows",
94 property: "margin-inline-start",
96 rules: ["div { display: table-row; margin-inline-start: 10px; }"],
100 info: "margin-inline-end is inactive on table rows",
101 property: "margin-inline-end",
103 rules: ["div { display: table-row; margin-inline-end: 10px; }"],
107 info: "margin-inline is inactive on table rows",
108 property: "margin-inline",
110 rules: ["div { display: table-row; margin-inline: 10px; }"],
114 info: "margin-left is inactive on table columns",
115 property: "margin-left",
117 rules: ["div { display: table-column; margin-left: 10px; }"],
121 info: "margin-right is inactive on table row groups",
122 property: "margin-right",
124 rules: ["div { display: table-row-group; margin-right: 10px; }"],
128 info: "margin-top is inactive on table column groups",
129 property: "margin-top",
131 rules: ["div { display: table-column-group; margin-top: 10px; }"],
135 info: "padding is active on block containers",
138 rules: ["div { padding: 10px; }"],
142 info: "padding is active on flex containers",
145 rules: ["div { display: flex; padding: 10px; }"],
149 info: "padding is active on grid containers",
152 rules: ["div { display: grid; padding: 10px; }"],
156 info: "padding is active on tables",
159 rules: ["div { display: table; padding: 10px; }"],
163 info: "padding is active on inline tables",
166 rules: ["div { display: inline-table; padding: 10px; }"],
170 info: "padding is active on table captions",
173 rules: ["div { display: table-caption; padding: 10px; }"],
177 info: "padding is active on table cells",
180 rules: ["div { display: table-cell; padding: 10px; }"],
184 info: "padding-block is active on table cells",
185 property: "padding-block",
187 rules: ["div { display: table-cell; padding-block: 10px; }"],
191 info: "padding-block-start is active on table cells",
192 property: "padding-block-start",
194 rules: ["div { display: table-cell; padding-block-start: 10px; }"],
198 info: "padding-block-end is active on table cells",
199 property: "padding-block-end",
201 rules: ["div { display: table-cell; padding-block-end: 10px; }"],
205 info: "padding-block is active on table cells",
206 property: "padding-block",
208 rules: ["div { display: table-cell; padding-block: 10px; }"],
212 info: "padding-bottom is inactive on table rows",
213 property: "padding-bottom",
215 rules: ["div { display: table-row; padding-bottom: 10px; }"],
219 info: "padding-inline-start is inactive on table rows",
220 property: "padding-inline-start",
222 rules: ["div { display: table-row; padding-inline-start: 10px; }"],
226 info: "padding-inline-end is inactive on table rows",
227 property: "padding-inline-end",
229 rules: ["div { display: table-row; padding-inline-end: 10px; }"],
233 info: "padding-inline is inactive on table rows",
234 property: "padding-inline",
236 rules: ["div { display: table-row; padding-inline: 10px; }"],
240 info: "padding-left is inactive on table columns",
241 property: "padding-left",
243 rules: ["div { display: table-column; padding-left: 10px; }"],
247 info: "padding-right is inactive on table row groups",
248 property: "padding-right",
250 rules: ["div { display: table-row-group; padding-right: 10px; }"],
254 info: "padding-top is inactive on table column groups",
255 property: "padding-top",
257 rules: ["div { display: table-column-group; padding-top: 10px; }"],