summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-box/parsing/visibility-computed.html
blob: f6d4c3f8e55f879e132435e267f824d33bf8f8d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS basic box model: getComputedStyle().visibility</title>
<link rel="help" href="https://www.w3.org/TR/CSS2/visufx.html#visibility">
<meta name="assert" content="visibility computed value is as specified.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("visibility", "visible");
test_computed_value("visibility", "hidden");
test_computed_value("visibility", "collapse");
</script>
</body>
</html>