diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root.html')
-rw-r--r-- | testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root.html b/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root.html new file mode 100644 index 0000000000..afd5d56f61 --- /dev/null +++ b/testing/web-platform/tests/css/css-view-transitions/view-transition-name-on-document-root.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<html> +<title>View transitions: view-transition-name is limited to document root</title> +<link rel="help" href="https://github.com/WICG/view-transitions"> +<link rel="author" href="mailto:khushalsagar@chromium.org"> +<link rel="match" href="view-transition-name-on-document-root-ref.html"> +<head> +<style> +.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> + |