diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html b/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html new file mode 100644 index 0000000000..cc0250bc59 --- /dev/null +++ b/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root-ref.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html> +<title>View transitions: view-transition-name is limited to document root (ref)</title> +<link rel="help" href="https://github.com/WICG/view-transitions"> +<link rel="author" href="mailto:khushalsagar@chromium.org"> +<head> +<style> +html { + view-transition-name: none; +} + +:root { + view-transition-name: root; +} + +.foo { + position: fixed; + left: 0; + top: 0; + background: red; + width: 100px; + height: 100px; + z-index: 1000; +} + +.bar { + position: fixed; + left: 50px; + top: 50px; + background: green; + width: 100px; + height: 100px; +} +</style> +</head> +<body> +<script> +const extraHTML = document.createElement('html'); + +const foo = document.createElement('div'); +foo.className = 'foo'; + +const bar = document.createElement('div'); +bar.className = 'bar'; + +extraHTML.append(foo); +document.body.append(extraHTML, bar); +</script> +</body> +</html> + |