Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Node / initial-values-expected.txt
blobf21d4386e5eb73d69f0542a547ee9fd289969446
1 Test creation of each type of Node and check intial values
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Attribute creation using createElement on an HTML doc:
7 PASS attr.nodeName is 'foo'
8 PASS attr.name is 'foo'
9 FAIL attr.localName should be null (of type object). Was foo (of type string).
10 PASS attr.namespaceURI is null
11 PASS attr.prefix is null
12 PASS attr.value is ''
13 Attribute creation using createElementNS on an HTML doc:
14 PASS attr.nodeName is 'example:foo'
15 PASS attr.name is 'example:foo'
16 PASS attr.localName is 'foo'
17 PASS attr.namespaceURI is 'http://www.example.com'
18 PASS attr.prefix is 'example'
19 PASS attr.nodeValue is ''
20 PASS attr.value is ''
21 Attribute creation using createElement on an XHTML doc:
22 PASS attr.nodeName is 'foo'
23 PASS attr.name is 'foo'
24 FAIL attr.localName should be null (of type object). Was foo (of type string).
25 PASS attr.namespaceURI is null
26 PASS attr.prefix is null
27 PASS attr.value is ''
28 Attribute creation using createElementNS on an XHTML doc:
29 PASS attr.nodeName is 'example:foo'
30 PASS attr.name is 'example:foo'
31 PASS attr.localName is 'foo'
32 PASS attr.namespaceURI is 'http://www.example.com'
33 PASS attr.prefix is 'example'
34 PASS attr.nodeValue is ''
35 PASS attr.value is ''
36 PASS comment.nodeName is '#comment'
37 PASS comment.localName is undefined
38 PASS comment.namespaceURI is undefined
39 PASS comment.nodeValue is 'foo'
40 PASS comment.data is 'foo'
41 PASS document.createCDATASection('foo') threw exception NotSupportedError: Failed to execute 'createCDATASection' on 'Document': This operation is not supported for HTML documents..
42 PASS cdata.nodeName is '#cdata-section'
43 PASS cdata.localName is undefined
44 PASS cdata.namespaceURI is undefined
45 PASS cdata.nodeValue is 'foo'
46 PASS cdata.data is 'foo'
47 PASS fragment.nodeName is '#document-fragment'
48 PASS fragment.localName is undefined
49 PASS fragment.namespaceURI is undefined
50 PASS fragment.nodeValue is null
51 PASS doc.nodeName is '#document'
52 PASS doc.localName is undefined
53 PASS doc.namespaceURI is undefined
54 PASS doc.nodeValue is null
55 PASS doctype.nodeName is 'svg'
56 PASS doctype.name is 'svg'
57 PASS doctype.localName is undefined
58 PASS doctype.namespaceURI is undefined
59 PASS doctype.nodeValue is null
60 Element creation using createElement on an HTML doc:
61 PASS element.nodeName is 'PRE'
62 FAIL element.localName should be null (of type object). Was pre (of type string).
63 FAIL element.namespaceURI should be null (of type object). Was http://www.w3.org/1999/xhtml (of type string).
64 PASS element.prefix is null
65 PASS element.nodeValue is null
66 PASS element.attributes.toString() is '[object NamedNodeMap]'
67 Prefixed element creation using createElementNS on an HTML doc:
68 PASS element.nodeName is 'HTML:PRE'
69 PASS element.localName is 'pre'
70 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
71 PASS element.prefix is 'html'
72 PASS element.nodeValue is null
73 PASS element.attributes.toString() is '[object NamedNodeMap]'
74 SVG Element creation using createElementNS on an HTML doc:
75 PASS element.nodeName is 'svg'
76 PASS element.localName is 'svg'
77 PASS element.namespaceURI is 'http://www.w3.org/2000/svg'
78 PASS element.prefix is null
79 PASS element.nodeValue is null
80 PASS element.attributes.toString() is '[object NamedNodeMap]'
81 Unknown Element creation using createElementNS on an HTML doc:
82 PASS element.nodeName is 'foo:svg'
83 PASS element.localName is 'svg'
84 PASS element.namespaceURI is 'http://www.webkit.org'
85 PASS element.prefix is 'foo'
86 PASS element.nodeValue is null
87 PASS element.attributes.toString() is '[object NamedNodeMap]'
88 Element creation using createElementNS on an HTML doc:
89 FAIL element.nodeName should be pre. Was PRE.
90 PASS element.localName is 'pre'
91 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
92 PASS element.prefix is null
93 PASS element.nodeValue is null
94 PASS element.attributes.toString() is '[object NamedNodeMap]'
95 Element creation using createElement on an XHTML doc:
96 PASS element.nodeName is 'pre'
97 FAIL element.localName should be null (of type object). Was pre (of type string).
98 FAIL element.namespaceURI should be null (of type object). Was http://www.w3.org/1999/xhtml (of type string).
99 PASS element.prefix is null
100 PASS element.nodeValue is null
101 PASS element.attributes.toString() is '[object NamedNodeMap]'
102 Element creation using createElementNS on an XHTML doc:
103 PASS element.nodeName is 'html:pre'
104 PASS element.localName is 'pre'
105 PASS element.namespaceURI is 'http://www.w3.org/1999/xhtml'
106 PASS element.prefix is 'html'
107 PASS element.nodeValue is null
108 PASS element.attributes.toString() is '[object NamedNodeMap]'
109 Processing instruction creation using createProcessingInstruction on an HTML doc:
110 PASS processingInstruction.nodeName is 'xml-stylesheet'
111 PASS processingInstruction.localName is undefined
112 PASS processingInstruction.namespaceURI is undefined
113 PASS processingInstruction.nodeValue is 'type="text/xsl" href="missing.xsl"'
114 PASS processingInstruction.target is 'xml-stylesheet'
115 PASS processingInstruction.data is 'type="text/xsl" href="missing.xsl"'
116 Processing instruction creation using createProcessingInstruction on an XHTML doc:
117 PASS processingInstruction.nodeName is 'xml-stylesheet'
118 PASS processingInstruction.localName is undefined
119 PASS processingInstruction.namespaceURI is undefined
120 PASS processingInstruction.nodeValue is 'type="text/xsl" href="missing.xsl"'
121 PASS processingInstruction.target is 'xml-stylesheet'
122 PASS processingInstruction.data is 'type="text/xsl" href="missing.xsl"'
123 Text node creation using createTextNode on an HTML doc:
124 PASS text.nodeName is '#text'
125 PASS text.localName is undefined
126 PASS text.namespaceURI is undefined
127 PASS text.nodeValue is 'foo'
128 PASS text.data is 'foo'
129 PASS successfullyParsed is true
131 TEST COMPLETE