diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2023-03-21 01:36:33 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2023-03-21 01:40:05 +0000 |
commit | 4e30ee5e0877f496eaeffdc0e11233830021e77d (patch) | |
tree | 7a15d4a18adb4e34fd1210893fa17bb3fd7a59f3 /tests/wpt/web-platform-tests/css/css-overflow | |
parent | 4931ee0eba673ea63d63f6e56a4e15e4c60dc60f (diff) | |
download | servo-4e30ee5e0877f496eaeffdc0e11233830021e77d.tar.gz servo-4e30ee5e0877f496eaeffdc0e11233830021e77d.zip |
Update web-platform-tests to revision b'065cf84e9f00d1c11faf2a41e500a73ad6b95a48'
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-overflow')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-overflow/overflow-no-interpolation.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-overflow/overflow-no-interpolation.html b/tests/wpt/web-platform-tests/css/css-overflow/overflow-no-interpolation.html new file mode 100644 index 00000000000..403482fa29a --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-overflow/overflow-no-interpolation.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<link rel=author href="mailto:jarhar@chromium.org"> +<link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/css/support/interpolation-testcommon.js"></script> + +<body> +<script> +test_no_interpolation({ + property: 'overflow-clip-margin', + from: 'initial', + to: '123px' +}); + +test_no_interpolation({ + property: 'overflow-x', + from: 'hidden', + to: 'visible' +}); + +test_no_interpolation({ + property: 'overflow-y', + from: 'hidden', + to: 'visible' +}); +</script> |