summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_bug379741.html
blob: 7bb2463ce7c027edc5b9ae08af96570c2b41fabd (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=379741
-->
<head>
  <title>Test for Bug 379741</title>
  <script src="/tests/SimpleTest/SimpleTest.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=379741">Mozilla Bug 379741</a>
<div id="content" style="display: none">
<div id="noframe"></div>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 379741 **/

var cs = getComputedStyle(document.getElementById("noframe"), "");
ok(cs.marginTop == "0" || cs.marginTop == "0px",
   "computed margin-top is not none");
ok(cs.marginRight == "0" || cs.marginRight == "0px",
   "computed margin-right is not none");
ok(cs.marginBottom == "0" || cs.marginBottom == "0px",
   "computed margin-bottom is not none");
ok(cs.marginLeft == "0" || cs.marginLeft == "0px",
   "computed margin-left is not none");
ok(cs.paddingTop == "0" || cs.paddingTop == "0px",
   "computed padding-top is not none");
ok(cs.paddingRight == "0" || cs.paddingRight == "0px",
   "computed padding-right is not none");
ok(cs.paddingBottom == "0" || cs.paddingBottom == "0px",
   "computed padding-bottom is not none");
ok(cs.paddingLeft == "0" || cs.paddingLeft == "0px",
   "computed padding-left is not none");

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