summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-values/calc-size/calc-size-height.tentative.html
blob: 61e59f83db491f4d8f7849d5e07cb79d99689204 (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
<!DOCTYPE html>
<title>calc-size() on height</title>
<link rel="help" href="https://drafts.csswg.org/css-values-5/#calc-size">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
  #container {
    font-size: 20px;
  }
  #child {
    width: 123px;
    height: 10px;
  }
</style>

<div id="container">
  <div id="target">
    <div id="child"></div>
  </div>
</div>

<script>

let basic_tests = [
  { value: "calc-size(any, 357px)", expected: "357px" },
  { value: "calc-size(any, 31%)", expected_auto: "0px", expected_definite: "31px" },
  { value: "calc-size(31%, size)", expected_auto: "10px", expected_definite: "31px" },
  { value: "calc-size(max-content, 31%)", expected_auto: "0px", expected_definite: "31px" },
  { value: "calc-size(fit-content, 72px)", expected: "72px" },
  { value: "calc-size(37px, 93px)", expected: "93px" },
  { value: "calc-size(83px, size * 3)", expected: "249px" },
  { value: "calc-size(min-content, size / 2)", expected: "5px" },
  { value: "calc-size(max-content, size * 1.2)", expected: "12px" },
  { value: "calc-size(fit-content, size / 2 + 30px)", expected: "35px" },
  { value: "calc-size(30px, 15em)", expected: "300px" },
  { value: "calc-size(calc-size(any, 30px), 15em)", expected: "300px" },
  { value: "calc-size(calc-size(2in, 30px), 15em)", expected: "300px" },
  { value: "calc-size(calc-size(min-content, 30px), 15em)", expected: "300px" },
  { value: "calc-size(calc-size(min-content, size), size)", expected: "10px" },
  { value: "calc(12% + calc-size(any, 31%))", expected_auto: "10px", expected_definite: "43px" },
  { value: "calc-size(any, 31% + 12px)", expected_auto: "12px", expected_definite: "43px" },
  { value: "calc-size(auto, size * 1.5)", expected: "15px" },
];
const container = document.getElementById("container");
const target = document.getElementById("target");
const target_cs = getComputedStyle(target);
for (const obj of basic_tests) {
  test((t) => {
    target.style.removeProperty("height");
    target.style.height = obj.value;
    container.style.height = "auto";
    let expected = "expected" in obj ? obj.expected : obj.expected_auto;
    assert_equals(target_cs.height, expected);
  }, `resolved height for height in auto height container: ${obj.value}`);
  test((t) => {
    target.style.removeProperty("height");
    target.style.height = obj.value;
    container.style.height = "100px";
    let expected = "expected" in obj ? obj.expected : obj.expected_definite;
    assert_equals(target_cs.height, expected);
  }, `resolved height for height in definite height container: ${obj.value}`);
}

</script>