Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/overlay/overlay-valid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Positioned Layout Module Test: parsing overlay with valid values</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
// overlay: none | auto
test_valid_value("overlay", "none");
test_valid_value("overlay", "auto");
test_valid_value("overlay", "inherit");
test_valid_value("overlay", "initial");
test_valid_value("overlay", "revert");
test_valid_value("overlay", "unset");
</script>