summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-paint-api/no-op-animation.https.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
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.html50
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>