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

Unified Diff: LayoutTests/svg/custom/dynamic-svg-document-creation.svg

Issue 146193003: Remove SVGDocument binding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix getSVGDocument to return SVGDocument Created 6 years, 11 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: LayoutTests/svg/custom/dynamic-svg-document-creation.svg
diff --git a/LayoutTests/svg/custom/dynamic-svg-document-creation.svg b/LayoutTests/svg/custom/dynamic-svg-document-creation.svg
index 54d8faa09c1345199fd62587306deee292a8373e..1f6eb820ba83c45174fc687e87ac25cbb84a2fcf 100644
--- a/LayoutTests/svg/custom/dynamic-svg-document-creation.svg
+++ b/LayoutTests/svg/custom/dynamic-svg-document-creation.svg
@@ -29,7 +29,7 @@ function init() {
var parser = new DOMParser();
var svgDocument = parser.parseFromString(documentString, "image/svg+xml");
- log("DOMParser.parseFromString returned: " + svgDocument + " should be: [object SVGDocument]");
+ log("DOMParser.parseFromString returned: " + svgDocument + " should be: [object XMLDocument]");
// Try some operations on the new document
log("SVGDocument's rootElement: " + svgDocument.rootElement + " should be: [object SVGSVGElement]");

Powered by Google App Engine
This is Rietveld 408576698