diff options
Diffstat (limited to 'testing/web-platform/tests/scroll-animations/css/scroll-timeline-attachment-parsing-tentative.html')
-rw-r--r-- | testing/web-platform/tests/scroll-animations/css/scroll-timeline-attachment-parsing-tentative.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/scroll-animations/css/scroll-timeline-attachment-parsing-tentative.html b/testing/web-platform/tests/scroll-animations/css/scroll-timeline-attachment-parsing-tentative.html new file mode 100644 index 0000000000..3235292d20 --- /dev/null +++ b/testing/web-platform/tests/scroll-animations/css/scroll-timeline-attachment-parsing-tentative.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/css/support/parsing-testcommon.js"></script> +<div id="target"></div> + +<script> + +test_valid_value('scroll-timeline-attachment', 'initial'); +test_valid_value('scroll-timeline-attachment', 'inherit'); +test_valid_value('scroll-timeline-attachment', 'unset'); +test_valid_value('scroll-timeline-attachment', 'revert'); + +test_valid_value('scroll-timeline-attachment', 'local'); +test_valid_value('scroll-timeline-attachment', 'defer'); +test_valid_value('scroll-timeline-attachment', 'ancestor'); +test_valid_value('scroll-timeline-attachment', 'local, defer'); +test_valid_value('scroll-timeline-attachment', 'defer, ancestor'); +test_valid_value('scroll-timeline-attachment', 'local, defer, ancestor, local'); +test_valid_value('scroll-timeline-attachment', 'local, local, local, local'); + +test_invalid_value('scroll-timeline-attachment', 'abc'); +test_invalid_value('scroll-timeline-attachment', '10px'); +test_invalid_value('scroll-timeline-attachment', 'auto'); +test_invalid_value('scroll-timeline-attachment', 'none'); +test_invalid_value('scroll-timeline-attachment', 'local defer'); +test_invalid_value('scroll-timeline-attachment', 'local / defer'); + +</script> |