Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/no-error-reporting-on-attribute-removal.html

Issue 1702643002: Don't report errors when SVG attributes are removed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TEs Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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>

Powered by Google App Engine