| Index: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js
|
| index e5d3047ad66206bfdfbaf6e0444562275ec2b935..84888777730f9d7723bf45a19879013f72b8c487 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js
|
| @@ -9,6 +9,7 @@ var createElementNS_tests = [
|
| [null, "1foo", "INVALID_CHARACTER_ERR"],
|
| [null, "f1oo", null],
|
| [null, "foo1", null],
|
| + [null, "1foo", "INVALID_CHARACTER_ERR"],
|
| [null, "\u0300foo", "INVALID_CHARACTER_ERR"],
|
| [null, "}foo", "INVALID_CHARACTER_ERR"],
|
| [null, "f}oo", "INVALID_CHARACTER_ERR"],
|
| @@ -65,6 +66,7 @@ var createElementNS_tests = [
|
| ["http://example.com/", "ns0:test", null],
|
| ["http://example.com/", "a.b:c", null],
|
| ["http://example.com/", "a-b:c", null],
|
| + ["http://example.com/", "a-b:c", null],
|
| ["http://example.com/", "xml", null],
|
| ["http://example.com/", "xmlns", "NAMESPACE_ERR"],
|
| ["http://example.com/", "XMLNS", null],
|
|
|