Index: third_party/WebKit/LayoutTests/svg/dom/no-error-reporting-on-attribute-removal.html |
diff --git a/third_party/WebKit/LayoutTests/svg/dom/no-error-reporting-on-attribute-removal.html b/third_party/WebKit/LayoutTests/svg/dom/no-error-reporting-on-attribute-removal.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4be00e6702e797b86f78dca0f54175fb732160ec |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/svg/dom/no-error-reporting-on-attribute-removal.html |
@@ -0,0 +1,10 @@ |
+<!DOCTYPE html> |
+<p>PASS if no error is reported.</p> |
+<svg> |
+ <text lengthAdjust="spacingAndGlyphs"></text> |
+</svg> |
+<script> |
+if (window.testRunner) |
+ testRunner.dumpAsText(); |
+document.querySelector('text').removeAttribute('lengthAdjust'); |
+</script> |