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 `first-line-pseudo-element` test cases.
13 info: "direction is inactive on ::first-line",
14 property: "direction",
16 rules: ["div::first-line { direction: rtl; }"],
18 expectedMsgId: "inactive-css-first-line-pseudo-element-not-supported",
21 info: "text-orientation is inactive on ::first-line",
22 property: "text-orientation",
24 rules: ["div::first-line { text-orientation: sideways; }"],
26 expectedMsgId: "inactive-css-first-line-pseudo-element-not-supported",
29 info: "writing-mode is inactive on ::first-line",
30 property: "writing-mode",
32 rules: ["div::first-line { writing-mode: vertical-rl; }"],
34 expectedMsgId: "inactive-css-first-line-pseudo-element-not-supported",
37 info: "color is active on ::first-line",
40 rules: ["div::first-line { color: green; }"],
44 info: "display is active on ::first-line",
47 rules: ["div::first-line { display: grid; }"],