OLD | NEW |
1 Testing document.register() type extension behaviours through createElement(). | 1 Testing document.register() type extension behaviours through createElement(). |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS document.register('x-foo', { prototype: Object.create(HTMLDivElement.protot
ype) }) threw exception Error: InvalidStateError: DOM Exception 11. | 6 PASS document.register('x-foo', { prototype: Object.create(HTMLDivElement.protot
ype) }) threw exception InvalidStateError: An attempt was made to use an object
that is not, or is no longer, usable.. |
7 PASS fooNewed.outerHTML is '<x-foo></x-foo>' | 7 PASS fooNewed.outerHTML is '<x-foo></x-foo>' |
8 PASS fooNewed instanceof fooConstructor && fooNewed instanceof HTMLElement is tr
ue | 8 PASS fooNewed instanceof fooConstructor && fooNewed instanceof HTMLElement is tr
ue |
9 PASS fooNewed instanceof HTMLUnknownElement is false | 9 PASS fooNewed instanceof HTMLUnknownElement is false |
10 PASS barNewed.outerHTML is '<input is="x-bar">' | 10 PASS barNewed.outerHTML is '<input is="x-bar">' |
11 PASS barNewed instanceof barConstructor && barNewed instanceof HTMLInputElement
is true | 11 PASS barNewed instanceof barConstructor && barNewed instanceof HTMLInputElement
is true |
12 PASS isFormControl(barNewed) is true | 12 PASS isFormControl(barNewed) is true |
13 PASS bazNewed.outerHTML is '<x-baz></x-baz>' | 13 PASS bazNewed.outerHTML is '<x-baz></x-baz>' |
14 PASS bazNewed instanceof bazConstructor && bazNewed instanceof HTMLElement is tr
ue | 14 PASS bazNewed instanceof bazConstructor && bazNewed instanceof HTMLElement is tr
ue |
15 PASS bazNewed instanceof HTMLUnknownElement is false | 15 PASS bazNewed instanceof HTMLUnknownElement is false |
16 PASS quxNewed instanceof quxConstructor && quxNewed instanceof barConstructor &&
quxNewed instanceof HTMLInputElement is true | 16 PASS quxNewed instanceof quxConstructor && quxNewed instanceof barConstructor &&
quxNewed instanceof HTMLInputElement is true |
(...skipping 24 matching lines...) Expand all Loading... |
41 PASS divBarCreated instanceof HTMLDivElement is true | 41 PASS divBarCreated instanceof HTMLDivElement is true |
42 PASS fooBarCreated.outerHTML is '<x-foo is="x-bar"></x-foo>' | 42 PASS fooBarCreated.outerHTML is '<x-foo is="x-bar"></x-foo>' |
43 PASS fooBarCreated instanceof fooConstructor is true | 43 PASS fooBarCreated instanceof fooConstructor is true |
44 PASS barFooCreated.outerHTML is '<x-bar is="x-foo"></x-bar>' | 44 PASS barFooCreated.outerHTML is '<x-bar is="x-foo"></x-bar>' |
45 PASS barFooCreated instanceof HTMLUnknownElement is false | 45 PASS barFooCreated instanceof HTMLUnknownElement is false |
46 PASS barFooCreated instanceof HTMLElement is true | 46 PASS barFooCreated instanceof HTMLElement is true |
47 PASS fooCreatedNull.outerHTML is '<x-foo></x-foo>' | 47 PASS fooCreatedNull.outerHTML is '<x-foo></x-foo>' |
48 PASS fooCreatedNull instanceof fooConstructor is true | 48 PASS fooCreatedNull instanceof fooConstructor is true |
49 PASS fooCreatedEmpty.outerHTML is '<x-foo></x-foo>' | 49 PASS fooCreatedEmpty.outerHTML is '<x-foo></x-foo>' |
50 PASS fooCreatedEmpty instanceof fooConstructor is true | 50 PASS fooCreatedEmpty instanceof fooConstructor is true |
51 PASS document.createElement('@invalid', 'x-bar') threw exception Error: InvalidC
haracterError: DOM Exception 5. | 51 PASS document.createElement('@invalid', 'x-bar') threw exception InvalidCharacte
rError: An invalid or illegal character was specified, such as in an XML name.. |
52 PASS fooCreatedNS.outerHTML is '<x-foo></x-foo>' | 52 PASS fooCreatedNS.outerHTML is '<x-foo></x-foo>' |
53 PASS fooCreatedNS instanceof fooConstructor is true | 53 PASS fooCreatedNS instanceof fooConstructor is true |
54 PASS barCreatedNS.outerHTML is '<input is="x-bar">' | 54 PASS barCreatedNS.outerHTML is '<input is="x-bar">' |
55 PASS barCreatedNS instanceof barConstructor is true | 55 PASS barCreatedNS instanceof barConstructor is true |
56 PASS isFormControl(barCreatedNS) is true | 56 PASS isFormControl(barCreatedNS) is true |
57 PASS document.createElementNS('http://example.com/2013/no-such-namespace', 'xml:
lang', 'x-bar') threw exception Error: NamespaceError: DOM Exception 14. | 57 PASS document.createElementNS('http://example.com/2013/no-such-namespace', 'xml:
lang', 'x-bar') threw exception NamespaceError: An attempt was made to create or
change an object in a way which is incorrect with regard to namespaces.. |
58 PASS fooParsed instanceof fooConstructor is true | 58 PASS fooParsed instanceof fooConstructor is true |
59 PASS barParsed instanceof barConstructor is true | 59 PASS barParsed instanceof barConstructor is true |
60 PASS isFormControl(barParsed) is true | 60 PASS isFormControl(barParsed) is true |
61 PASS divFooParsed instanceof fooConstructor is false | 61 PASS divFooParsed instanceof fooConstructor is false |
62 PASS divFooParsed instanceof HTMLDivElement is true | 62 PASS divFooParsed instanceof HTMLDivElement is true |
63 PASS namedBarParsed instanceof barConstructor is false | 63 PASS namedBarParsed instanceof barConstructor is false |
64 PASS namedBarParsed instanceof HTMLUnknownElement is false | 64 PASS namedBarParsed instanceof HTMLUnknownElement is false |
65 PASS namedBarParsed instanceof HTMLElement is true | 65 PASS namedBarParsed instanceof HTMLElement is true |
66 PASS divBarParsed instanceof barConstructor is false | 66 PASS divBarParsed instanceof barConstructor is false |
67 PASS divBarParsed instanceof HTMLDivElement is true | 67 PASS divBarParsed instanceof HTMLDivElement is true |
68 PASS successfullyParsed is true | 68 PASS successfullyParsed is true |
69 | 69 |
70 TEST COMPLETE | 70 TEST COMPLETE |
71 | 71 |
OLD | NEW |