summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-logical/resources/test-shared.js
blob: 7a1da2e649708a0ed7d6d9dbe76322ce67bd266b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const sheet = document.head.appendChild(document.createElement("style"));

// Specify size for outer <div> to avoid unconstrained-size warnings
// when writing-mode of the inner test <div> is vertical-*
const wrapper = document.body.appendChild(document.createElement("div"));
wrapper.style.cssText = "width:100px; height: 100px;";
export const testElement = wrapper.appendChild(document.createElement("div"));
testElement.id = testElement.className = "test";

// Six unique overall writing modes for property-mapping purposes.
export const writingModes = [
  {
    styles: [
      {"writing-mode": "horizontal-tb", "direction": "ltr"},
    ],
    blockStart: "top", blockEnd: "bottom", inlineStart: "left", inlineEnd: "right",
    over: "top", under: "bottom", lineLeft: "left", lineRight: "right",
    block: "vertical", inline: "horizontal" },
  {
    styles: [
      {"writing-mode": "horizontal-tb", "direction": "rtl"},
    ],
    blockStart: "top", blockEnd: "bottom", inlineStart: "right", inlineEnd: "left",
    over: "top", under: "bottom", lineLeft: "left", lineRight: "right",
    block: "vertical", inline: "horizontal" },
  {
    styles: [
      {"writing-mode": "vertical-rl", "direction": "rtl"},
      {"writing-mode": "sideways-rl", "direction": "rtl"},
    ],
    blockStart: "right", blockEnd: "left", inlineStart: "bottom", inlineEnd: "top",
    over: "right", under: "left", lineLeft: "top", lineRight: "bottom",
    block: "horizontal", inline: "vertical" },
  {
    styles: [
      {"writing-mode": "vertical-rl", "direction": "ltr"},
      {"writing-mode": "sideways-rl", "direction": "ltr"},
    ],
    blockStart: "right", blockEnd: "left", inlineStart: "top", inlineEnd: "bottom",
    over: "right", under: "left", lineLeft: "top", lineRight: "bottom",
    block: "horizontal", inline: "vertical" },
  {
    styles: [
      {"writing-mode": "vertical-lr", "direction": "rtl"},
    ],
    blockStart: "left", blockEnd: "right", inlineStart: "bottom", inlineEnd: "top",
    over: "right", under: "left", lineLeft: "top", lineRight: "bottom",
    block: "horizontal", inline: "vertical" },
  {
    styles: [
      {"writing-mode": "sideways-lr", "direction": "ltr"},
    ],
    blockStart: "left", blockEnd: "right", inlineStart: "bottom", inlineEnd: "top",
    over: "left", under: "right", lineLeft: "bottom", lineRight: "top",
    block: "horizontal", inline: "vertical" },
  {
    styles: [
      {"writing-mode": "vertical-lr", "direction": "ltr"},
    ],
    blockStart: "left", blockEnd: "right", inlineStart: "top", inlineEnd: "bottom",
    over: "right", under: "left", lineLeft: "top", lineRight: "bottom",
    block: "horizontal", inline: "vertical" },
  {
    styles: [
      {"writing-mode": "sideways-lr", "direction": "rtl"},
    ],
    blockStart: "left", blockEnd: "right", inlineStart: "top", inlineEnd: "bottom",
    over: "left", under: "right", lineLeft: "bottom", lineRight: "top",
    block: "horizontal", inline: "vertical" },
];

// Check if logical properties work well in WebKit non-standard
// '-webkit-writing-mode: horizontal-bt' mode
if (CSS.supports("-webkit-writing-mode", "horizontal-bt")) {
  writingModes.push (
  {
    styles: [
      {"-webkit-writing-mode": "horizontal-bt", "direction": "ltr"},
    ],
    blockStart: "bottom", blockEnd: "top", inlineStart: "left", inlineEnd: "right",
    over: "top", under: "bottom", lineLeft: "left", lineRight: "right",
    block: "vertical", inline: "horizontal" },
  {
    styles: [
      {"-webkit-writing-mode": "horizontal-bt", "direction": "rtl"},
    ],
    blockStart: "bottom", blockEnd: "top", inlineStart: "right", inlineEnd: "left",
    over: "top", under: "bottom", lineLeft: "left", lineRight: "right",
    block: "vertical", inline: "horizontal" },
  )
}

export function testCSSValues(testName, style, expectedValues) {
  for (const [property, value] of expectedValues) {
    assert_equals(style.getPropertyValue(property), value, `${testName}, ${property}`);
  }
}

export function testComputedValues(testName, rules, expectedValues) {
  sheet.textContent = rules;
  const cs = getComputedStyle(testElement);
  testCSSValues(testName, cs, expectedValues);
  sheet.textContent = "";
}

export function makeDeclaration(object = {}, replacement = "*") {
  let decl = "";
  for (const [property, value] of Object.entries(object)) {
    decl += `${property.replace("*", replacement)}: ${value}; `;
  }
  return decl;
}