mirror of
https://github.com/servo/servo.git
synced 2025-06-26 18:14:34 +01:00
20 lines
733 B
HTML
20 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS basic box model: parsing visibility with valid values</title>
|
|
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-box-3/#propdef-visibility">
|
|
<meta name="assert" content="visibility supports the full grammar 'visible | hidden | collapse'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_valid_value("visibility", "visible");
|
|
test_valid_value("visibility", "hidden");
|
|
test_valid_value("visibility", "collapse");
|
|
</script>
|
|
</body>
|
|
</html>
|