summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-display/display-with-float-dynamic.html
blob: 7cc2fefcc42f4fc0aa7b72fabbf2fc8df6c38048 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Computed float value of flex/grid items</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-containers">
<meta name="assert" content="computed float value of flex/grid items should be as specified">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<div id="flex" style="display:flex;">
  <div id="flex-item"></div>
</div>
<div id="grid" style="display:grid;">
  <div id="grid-item">
</div>
<script>
  function setFloatFor(id, float) {
    document.getElementById(id).style.cssFloat = float;
  }
  function getFloatFor(id) {
    return window.getComputedStyle(document.getElementById(id)).getPropertyValue("float");
  }
  function setDisplayBlock(id) {
    document.getElementById(id).style.display = "block";
  }
  test(function() {
    assert_equals(getFloatFor("flex-item"), "none");
    assert_equals(getFloatFor("grid-item"), "none");

    setFloatFor("flex-item", "left");
    setFloatFor("grid-item", "right");
    assert_equals(getFloatFor("flex-item"), "left");
    assert_equals(getFloatFor("grid-item"), "right");

    setDisplayBlock("grid");
    setDisplayBlock("flex");
    assert_equals(getFloatFor("flex-item"), "left");
    assert_equals(getFloatFor("grid-item"), "right");
  }, "computed style for float");
</script>