Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
This is Rietveld 408576698