summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_ch_ex_no_infloops.html
blob: db9eda20df72ec67ec3496c91e9a6613df08df8b (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=678671
-->
<head>
  <title>Test for Bug 678671</title>
  <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=678671">Mozilla Bug 678671</a>
<p id="display"></p>
<div id="content"></div>
<script type="application/javascript">

/** Test for Bug 678671 **/

/**
 * Test 'ex' and 'ch' units in every place we possible can to make
 * sure they don't cause an infinite loop.
 */

var content = document.getElementById("content");
var cs = getComputedStyle(content, "");

for (var prop in gCSSProperties) {
  var info = gCSSProperties[prop];
  function test_val(v) {
    content.style.setProperty(prop, v, "");
    isnot(get_computed_value(cs, prop), "",
      "Setting '" + prop + "' to '" + v + "' should not cause infinite loop");
  }
  test_val('3ex');
  test_val('2ch');
  function test_replaced_values(value_list) {
    // For each item in value_list, if it looks like it has a dimension
    // in it, replace those dimensions with 3ex and 2ch and test it.
    for (var i = 0; i < value_list.length; ++i) {
      var value = value_list[i];
      function try_replace(withval) {
        var rep = value.replace(/[0-9.]+[a-zA-Z]+/g, withval)
        if (rep != value) {
          test_val(rep);
        }
      }
      try_replace('3ex');
      try_replace('2ch');
    }
  }
  test_replaced_values(info.initial_values);
  test_replaced_values(info.other_values);
  content.style.removeProperty(prop);
}

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