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

Unified Diff: LayoutTests/svg/custom/frame-getSVGDocument.html

Issue 146193003: Remove SVGDocument binding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT 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/frame-getSVGDocument.html
diff --git a/LayoutTests/svg/custom/frame-getSVGDocument.html b/LayoutTests/svg/custom/frame-getSVGDocument.html
index db5963347b2ba1c7b3290e67632d63ec75c0739f..b662fee70e8e83577602e74444babcad78b2fbec 100644
--- a/LayoutTests/svg/custom/frame-getSVGDocument.html
+++ b/LayoutTests/svg/custom/frame-getSVGDocument.html
@@ -27,7 +27,7 @@
}
var continueTest1 = function() {
- shouldBeEqualToString("frame.getSVGDocument().toString()", "[object SVGDocument]");
+ shouldBeEqualToString("frame.getSVGDocument().toString()", "[object XMLDocument]");
frame.parentNode.removeChild(frame);
iframe = document.createElement("iframe");
@@ -38,7 +38,7 @@
}
var continueTest2 = function() {
- shouldBeEqualToString("iframe.getSVGDocument().toString()", "[object SVGDocument]");
+ shouldBeEqualToString("iframe.getSVGDocument().toString()", "[object XMLDocument]");
iframe.parentNode.removeChild(iframe);
embed = document.createElement("embed");
@@ -49,7 +49,7 @@
}
var continueTest3 = function(event) {
- shouldBeEqualToString("embed.getSVGDocument().toString()", "[object SVGDocument]");
+ shouldBeEqualToString("embed.getSVGDocument().toString()", "[object XMLDocument]");
embed.parentNode.removeChild(embed);
object = document.createElement("object");
@@ -60,7 +60,7 @@
}
function continueTest4() {
- shouldBeEqualToString("object.getSVGDocument().toString()", "[object SVGDocument]");
+ shouldBeEqualToString("object.getSVGDocument().toString()", "[object XMLDocument]");
object.parentNode.removeChild(object);
finishJSTest();

Powered by Google App Engine
This is Rietveld 408576698