1
0
Fork 0
firefox/testing/web-platform/tests/svg/animations/end-attribute-change-end-time.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

22 lines
681 B
HTML

<!DOCTYPE html>
<title>Mutation of the 'end' attribute changes current interval end</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<svg>
<rect width="100" height="100" fill="green">
<set attributeName="fill" to="red"/>
</rect>
</svg>
<script>
async_test(t => {
onload = t.step_func(() => {
t.step_timeout(() => {
let set = document.querySelector('set');
set.setAttribute('end', '0s');
requestAnimationFrame(t.step_func_done(() => {
assert_equals(getComputedStyle(set.targetElement, null).fill, 'rgb(0, 128, 0)');
}));
});
});
});
</script>