summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_bug383075.html
blob: 8d902103e908973fbe8a2a14b0773e3d7c3797d9 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=383075
-->
<head>
  <title>Test for bug 383075</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<style type="text/css">

        html,body {
            color:black; background-color:white; font-size:16px; font-family: Arial;
        }
	

</style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=383075">Mozilla bug 383075</a>
<p id="display">

The X'es below should have the same size:<br>

<span id="a1" style="font-size:72px;">X</span>
<span id="a2" style="font-size:72px;">X</span>
<span id="a3" style="font-size:72px;">X</span>
<span id="a4" style="font-size:72px;">X</span>
<span id="a5" style="font-size:72px;">X</span>
<span id="a6" style="font-size:72px;">X</span>
<span id="a7" style="font-size:24px;">X</span>
<span id="a8" style="font-size:72px;">X</span>
<span id="a9" style="font:24px Arial;">X</span>

<br>

<span id="b1" style="font-size:72px;">X</span>
<span id="b2" style="font-size:72px;">X</span>
<span id="b3" style="font-size:72px;">X</span>
<span id="b4" style="font-size:72px;">X</span>
<span id="b5" style="font-size:72px;">X</span>
<span id="b6" style="font-size:72px;">X</span>
<span id="b7" style="font-size:24px;">X</span>
<span id="b8" style="font-size:72px;">X</span>
<span id="b9" style="font:24px Arial;">X</span>
</p>

<pre id="test">
<script class="testbody" type="text/javascript">

  document.getElementById("a1").style.fontSize = "illegal";
  document.getElementById("a2").style.fontSize = "24px;";
  document.getElementById("a3").style.fontSize = "24px; font-size-adjust:2";
  document.getElementById("a4").style.fontSize = ";";
  document.getElementById("a5").style.font = "24px Arial;";
  document.getElementById("a6").style.font = "24px;";
  document.getElementById("a7").style.fontSize = "  72px  ";   // correct
  document.getElementById("a8").style.font = ";";
  document.getElementById("a9").style.font = "  72px Arial  ";  // correct

  document.getElementById("b1").style.setProperty("font-size", "illegal", null);
  document.getElementById("b2").style.setProperty("font-size", "24px;", null);
  document.getElementById("b3").style.setProperty("font-size", "24px; font-size-adjust:2", null);
  document.getElementById("b4").style.setProperty("font-size", ";", null);
  document.getElementById("b5").style.setProperty("font", "24px Arial;", null);
  document.getElementById("b6").style.setProperty("font", "24px;", null);
  document.getElementById("b7").style.setProperty("font-size", "  72px  ", null); // correct
  document.getElementById("b8").style.setProperty("font", ";", null);
  document.getElementById("b9").style.setProperty("font", "  72px Arial  ", null); // correct


for (i=1; i <= 9; ++i)
  is($('a'+i).style.fontSize, '72px', "font size");

for (i=1; i <= 9; ++i)
  is($('b'+i).style.fontSize, '72px', "font size");


</script>
</pre>

</body>
</html>