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

  #display:not(.hasSummary) { visibility: hidden }

  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=573255">Mozilla Bug 573255</a>
<p id="display"></p>
<pre id="test">
<script type="application/javascript">

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

is(cs.visibility, "hidden", "should be visibility:none since it has no class");
p.className = "hasSummary";
is(cs.visibility, "visible", "changing class attribute should remove visibility:hidden");

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