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

Unified Diff: LayoutTests/svg/custom/clone-node.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/clone-node.html
diff --git a/LayoutTests/svg/custom/clone-node.html b/LayoutTests/svg/custom/clone-node.html
index 7f17685e087c6310258c24a40a4c81a68129bd18..a624e8356ef938f4c17f2d1b27345bc1cd9356e6 100644
--- a/LayoutTests/svg/custom/clone-node.html
+++ b/LayoutTests/svg/custom/clone-node.html
@@ -11,8 +11,8 @@ function className(object) {
var svgDoc = document.implementation.createDocument('http://www.w3.org/2000/svg', 'svg', null);
-shouldBe('svgDoc.cloneNode(false).__proto__', 'SVGDocument.prototype');
-shouldBeEqualToString('className(svgDoc.cloneNode(false))', 'SVGDocument');
+shouldBe('svgDoc.cloneNode(false).__proto__', 'XMLDocument.prototype');
+shouldBeEqualToString('className(svgDoc.cloneNode(false))', 'XMLDocument');
shouldBeEqualToString('svgDoc.cloneNode(true).compatMode', 'CSS1Compat');
</script>

Powered by Google App Engine
This is Rietveld 408576698