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 `box-sizing` test cases.
8 info: "box-sizing is inactive on inline element",
9 property: "box-sizing",
11 rules: ["span { box-sizing: border-box; }"],
15 info: "box-sizing is active on block element",
16 property: "box-sizing",
18 rules: ["div { box-sizing: border-box; }"],
22 info: "box-sizing is active on inline-block element",
23 property: "box-sizing",
25 rules: ["span { display: inline-block; box-sizing: border-box; }"],
29 info: "box-sizing is active on replaced element",
30 property: "box-sizing",
32 rules: ["input { display: inline; box-sizing: border-box; }"],