summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_position_float_display.html
blob: ee75144dcbc1d7ea5a201fbe8631be78f2249f63 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1038929
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1038929</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="property_database.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank"
  href="https://bugzilla.mozilla.org/show_bug.cgi?id=1038929">Mozilla Bug 1038929</a>
<p id="display"></p>
<div id="content" style="display: none">
  <div id="float-left" style="float: left"></div>
  <div id="float-right" style="float: right"></div>
  <div id="position-absolute" style="position: absolute"></div>
  <div id="position-fixed" style="position: fixed"></div>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 1038929: Test that "display" on a floated or absolutely/fixed
  position node is correctly converted to a block display as given in the table
  in CSS 2.1 9.7. */

// Maps from display value to expected conversion when floated/positioned
// This loosely follows the spec in CSS 2.1 section 9.7. Except for "other"
// values which the spec says should be "same as specified." For these, we do
// whatever the spec for the value itself says.
var mapping = {
  "inline": "block",
  "table-row-group": "block",
  "table-column": "block",
  "table-column-group": "block",
  "table-header-group": "block",
  "table-footer-group": "block",
  "table-row": "block",
  "table-cell": "block",
  "table-caption": "block",
  "inline-block": "block",
  "block ruby": "block ruby",
  "ruby": "block ruby",
  "ruby-base": "block",
  "ruby-base-container": "block",
  "ruby-text": "block",
  "ruby-text-container": "block",
  "flex": "flex",
  "grid": "grid",
  "none": "none",
  "table": "table",
  "inline-grid": "grid",
  "inline-flex": "flex",
  "inline-table": "table",
  "block": "block",
  "contents": "contents",
  "flow-root": "flow-root",
  // Note: this is sometimes block
  "list-item": "list-item",
  "inline list-item": "list-item",
  "inline flow-root list-item": "list-item",
};

function test_display_value(val)
{
  var floatLeftElem = document.getElementById("float-left");
  floatLeftElem.style.display = val;
  var floatLeftConversion = window.getComputedStyle(floatLeftElem).display;
  floatLeftElem.style.display = "";

  var floatRightElem = document.getElementById("float-right");
  floatRightElem.style.display = val;
  var floatRightConversion = window.getComputedStyle(floatRightElem).display;
  floatRightElem.style.display = "";

  var posAbsoluteElem = document.getElementById("position-absolute");
  posAbsoluteElem.style.display = val;
  var posAbsoluteConversion = window.getComputedStyle(posAbsoluteElem).display;
  posAbsoluteElem.style.display = "";

  var posFixedElem = document.getElementById("position-fixed");
  posFixedElem.style.display = val;
  var posFixedConversion = window.getComputedStyle(posFixedElem).display;
  posFixedElem.style.display = "";

  if (mapping[val]) {
    is(floatLeftConversion, mapping[val], 
        "Element display should be converted when floated left");
    is(floatRightConversion, mapping[val],
        "Element display should be converted when floated right");
    is(posAbsoluteConversion, mapping[val],
        "Element display should be converted when absolutely positioned");
    is(posFixedConversion, mapping[val],
        "Element display should be converted when fixed positioned");
  } else {
    ok(false, "missing rules for display value " + val);
  }
}

var displayInfo = gCSSProperties.display;
displayInfo.initial_values.forEach(test_display_value);
displayInfo.other_values.forEach(test_display_value);

</script>
</pre>
</body>
</html>