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

Unified Diff: LayoutTests/dom/xhtml/level3/core/wellformed04.js

Issue 740223003: Revive tests for Document.createAttributeNS() and Element.setAttributeNodeNS() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: deprecation messages Created 6 years, 1 month 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/dom/xhtml/level3/core/wellformed04.js
diff --git a/LayoutTests/dom/xhtml/level3/core/wellformed04.js b/LayoutTests/dom/xhtml/level3/core/wellformed04.js
index 9628cc3e648830bcfac7a6d7af71370937cf62df..79bf2a765b123e1e16636f89d7ef907449719f98 100644
--- a/LayoutTests/dom/xhtml/level3/core/wellformed04.js
+++ b/LayoutTests/dom/xhtml/level3/core/wellformed04.js
@@ -105,7 +105,7 @@ doc = domImpl.createDocument("http://www.w3.org/1999/xhtml","html",nullDoctype);
{
success = false;
try {
- attr = doc.createAttribute("LegalNameࢎ");
+ attr = doc.createAttributeNS(nullNS,"LegalNameࢎ");
}
catch(ex) {
success = (typeof(ex.code) != 'undefined' && ex.code == 5);

Powered by Google App Engine
This is Rietveld 408576698