зеркало из https://github.com/mozilla/pjs.git
Add test for bug 573255.
--HG-- extra : transplant_source : Y%E3o%C5%F1H8t%AF%3E%1Cu%5B%EA%E0%2B%27%08%EA%C2
This commit is contained in:
Родитель
d855fbc9f9
Коммит
dbfe884efa
|
@ -131,6 +131,7 @@ _TEST_FILES = test_acid3_test46.html \
|
|||
test_bug517224.html \
|
||||
test_bug524175.html \
|
||||
test_bug534804.html \
|
||||
test_bug573255.html \
|
||||
test_cascade.html \
|
||||
test_compute_data_with_start_struct.html \
|
||||
test_computed_style_no_pseudo.html \
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=573255
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 573255</title>
|
||||
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
||||
<script type="application/javascript" 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>
|
Загрузка…
Ссылка в новой задаче