1
0
Fork 0
firefox/testing/web-platform/tests/css/css-paint-api/no-op-animation-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
366 B
HTML

<!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>