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

Unified Diff: LayoutTests/http/tests/misc/createElementNamespace3.html

Issue 1254243002: Remove Node.localName and Node.namespaceURI (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix layout test failure Created 5 years, 5 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/http/tests/misc/createElementNamespace3.html
diff --git a/LayoutTests/http/tests/misc/createElementNamespace3.html b/LayoutTests/http/tests/misc/createElementNamespace3.html
index cb6947f4f9d9512388a894d6e11020e660892835..57a9db79ce06391b1d5188c1ff38f264c5bd6b7e 100644
--- a/LayoutTests/http/tests/misc/createElementNamespace3.html
+++ b/LayoutTests/http/tests/misc/createElementNamespace3.html
@@ -13,7 +13,7 @@
log("");
log("Test1: document.namespaceURI")
- shouldBe("document.namespaceURI", "null");
+ shouldBe("document.namespaceURI", "undefined");
log("");
log("Test2: document.createElement().namespaceURI")
@@ -27,7 +27,7 @@
var newDoc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "", null);
log("Test4: created document.namespaceURI");
- shouldBe("newDoc.namespaceURI", "null");
+ shouldBe("newDoc.namespaceURI", "undefined");
log("");
log("Test5: created document.createElement.namespaceURI");

Powered by Google App Engine
This is Rietveld 408576698