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

Unified Diff: LayoutTests/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js

Issue 1164123003: Make createAttributeNS's qualifiedName argument non-nullable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 5 years, 6 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/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js
diff --git a/LayoutTests/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js b/LayoutTests/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js
index 06cfde23ebff67e0a1e47ac635ff4e4d0859a454..7f25d8abda2b7f19089ec109d30ba9e93800cace 100644
--- a/LayoutTests/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js
+++ b/LayoutTests/fast/dom/Document/script-tests/createAttributeNS-namespace-err.js
@@ -38,10 +38,10 @@ function assertExceptionCode(exception, expect, m)
var allNSTests = [
{ args: [undefined, undefined] },
{ args: [null, undefined] },
- { args: [undefined, null], code: 5 },
- { args: [null, null], code: 5 },
+ { args: [undefined, null] },
+ { args: [null, null] },
{ args: [null, ""], code: 5 },
- { args: ["", null], code: 5 },
+ { args: ["", null] },
{ args: ["", ""], code: 5 },
{ args: [null, "<div>"], code: 5 },
{ args: [null, "0div"], code: 5 },
« no previous file with comments | « LayoutTests/fast/dom/Document/createAttributeNS-namespace-err-expected.txt ('k') | Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698