diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html')
-rw-r--r-- | testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html b/testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html new file mode 100644 index 0000000000..5898555844 --- /dev/null +++ b/testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<link rel="help" href="https://drafts.css-houdini.org/css-paint-api/"> +<link rel="match" href="no-op-animation-ref.html"> +<style> +#container { +} +.animate { + background-image: paint(foo); + animation: anim 1s; +} +@keyframes anim { + 0% { --foo: rgb(200, 0, 0); } +} +</style> +<script src="/common/reftest-wait.js"></script> +<body "lightyellow" contenteditable="true"="0"> +<div id="container">=</div> + +<script id="code" type="text/worklet"> +registerPaint('foo', class { + static get inputProperties() { return ['--foo']; } + paint() {} +}); +</script> + +<script> +CSS.registerProperty({ + name: '--foo', + syntax: '<color>', + initialValue: 'rgb(0, 0, 0)', + inherits: false +}); +var code = document.getElementById('code').textContent; +var blob = new Blob([code], {type: 'text/javascript'}); +CSS.paintWorklet.addModule(URL.createObjectURL(blob)).then(function() { + document.getElementById('container').classList.add('animate'); + edit(); +}); +function edit() { + document.execCommand("selectAll"); + document.execCommand("InsertHTML",false,"<pre></pre>"); + document.execCommand("InsertHTML",false,"<div>i</div>"); + document.execCommand("indent"); + document.execCommand("selectAll"); + takeScreenshot(); +} +</script> +</body> +</html> |