diff --git a/content/svg/content/test/test_dataTypes.html b/content/svg/content/test/test_dataTypes.html index a6035cfdd71..e226e4eee08 100644 --- a/content/svg/content/test/test_dataTypes.html +++ b/content/svg/content/test/test_dataTypes.html @@ -167,6 +167,9 @@ function runTests() is(marker.orientAngle.animVal.value, 30, "angle animVal"); is(marker.getAttribute("orient"), "30deg", "angle attribute"); + marker.setAttribute("orient", "auto"); + is(marker.getAttribute("orient"), "auto", "checking 'auto' string preserved"); + marker.setAttribute("orient", ""); ok(marker.getAttribute("orient") === "", "empty angle attribute"); marker.removeAttribute("orient");