summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html b/testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html
new file mode 100644
index 0000000000..19c8e56def
--- /dev/null
+++ b/testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<body "lightyellow" contenteditable="true"="0">
+<div>=</div>
+
+<script>
+function edit() {
+ document.execCommand("selectAll");
+ document.execCommand("InsertHTML",false,"<pre></pre>");
+ document.execCommand("InsertHTML",false,"<div>i</div>");
+ document.execCommand("indent");
+ document.execCommand("selectAll");
+}
+edit();
+</script>
+</body>
+</html>