diff options
Diffstat (limited to 'testing/web-platform/tests/svg/animations/attribute-value-unaffected-by-animation-002.html')
-rw-r--r-- | testing/web-platform/tests/svg/animations/attribute-value-unaffected-by-animation-002.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/animations/attribute-value-unaffected-by-animation-002.html b/testing/web-platform/tests/svg/animations/attribute-value-unaffected-by-animation-002.html new file mode 100644 index 0000000000..29878d02cb --- /dev/null +++ b/testing/web-platform/tests/svg/animations/attribute-value-unaffected-by-animation-002.html @@ -0,0 +1,21 @@ +<!doctype html> +<title>An animation of an attribute ('orient') does not change the DOM attribute value</title> +<link rel="help" href="https://www.w3.org/TR/2001/REC-smil-animation-20010904/#BasicAnim"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<svg> + <marker orient="90"> + <set attributeName="orient" to="auto"/> + </rect> +</svg> +<script> + async_test(t => { + onload = t.step_func(() => { + requestAnimationFrame(t.step_func_done(() => { + let marker = document.querySelector('marker'); + marker.orientAngle.baseVal.valueInSpecifiedUnits = 180; + assert_equals(marker.getAttribute('orient'), '180'); + })); + }); + }); +</script> |