Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / e4x / XML / 13.4.4.26.js
1 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  *
3  * ***** BEGIN LICENSE BLOCK *****
4  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5  *
6  * The contents of this file are subject to the Mozilla Public License Version
7  * 1.1 (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  * http://www.mozilla.org/MPL/
10  *
11  * Software distributed under the License is distributed on an "AS IS" basis,
12  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13  * for the specific language governing rights and limitations under the
14  * License.
15  *
16  * The Original Code is Rhino code, released
17  * May 6, 1999.
18  *
19  * The Initial Developer of the Original Code is
20  * Netscape Communications Corporation.
21  * Portions created by the Initial Developer are Copyright (C) 1997-2000
22  * the Initial Developer. All Rights Reserved.
23  *
24  * Contributor(s):
25  *   Igor Bukanov
26  *   Ethan Hugg
27  *   Milen Nankov
28  *   Jeff Walden <jwalden+code@mit.edu>
29  *
30  * Alternatively, the contents of this file may be used under the terms of
31  * either the GNU General Public License Version 2 or later (the "GPL"), or
32  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
33  * in which case the provisions of the GPL or the LGPL are applicable instead
34  * of those above. If you wish to allow use of your version of this file only
35  * under the terms of either the GPL or the LGPL, and not to allow others to
36  * use your version of this file under the terms of the MPL, indicate your
37  * decision by deleting the provisions above and replace them with the notice
38  * and other provisions required by the GPL or the LGPL. If you do not delete
39  * the provisions above, a recipient may use your version of this file under
40  * the terms of any one of the MPL, the GPL or the LGPL.
41  *
42  * ***** END LICENSE BLOCK ***** */
43
44
45 START("13.4.4.26 - XML normalize()");
46
47 TEST(1, true, XML.prototype.hasOwnProperty("normalize"));
48
49 XML.ignoreWhitespace = false;
50 XML.prettyPrinting = false;
51
52 var x = <alpha> <bravo> one </bravo> </alpha>;
53
54 TEST_XML(2, "<alpha> <bravo> one </bravo> </alpha>", x);
55 x.normalize();
56 TEST_XML(3, "<alpha> <bravo> one </bravo> </alpha>", x);
57
58
59 // First, test text node coalescing
60
61 delete x.bravo[0];
62
63 TEST_XML(4, "<alpha>  </alpha>", x);
64 TEST(5, 2, x.children().length());
65
66 x.normalize();
67
68 TEST_XML(6, "<alpha>  </alpha>", x);
69 TEST(7, 1, x.children().length());
70
71 // check that nodes are inserted in the right place after a normalization
72
73 x.appendChild(<bravo> fun </bravo>);
74
75 TEST_XML(8, "<alpha>  <bravo> fun </bravo></alpha>", x);
76 TEST(9, 2, x.children().length());
77
78 // recursive nature
79
80 var y = <charlie> <delta/> </charlie>;
81
82 TEST(10, 3, y.children().length());
83
84 x.appendChild(y);
85 delete y.delta[0];
86
87 TEST(11, 2, y.children().length());
88
89 x.normalize();
90
91 TEST(12, 1, y.children().length());
92 TEST(13, 1, x.charlie.children().length());
93
94
95
96 // Second, test empty text node removal
97
98 x = <alpha><beta/></alpha>;
99
100 TEST_XML(14, "<alpha><beta/></alpha>", x);
101 TEST(15, 1, x.children().length());
102
103 x.appendChild(XML());
104
105 TEST_XML(16, "<alpha><beta/></alpha>", x);
106 TEST(17, 2, x.children().length());
107
108 x.normalize();
109
110 TEST_XML(18, "<alpha><beta/></alpha>", x);
111 TEST(19, 1, x.children().length());
112
113 x.appendChild(XML(" "));
114
115 TEST_XML(20, "<alpha><beta/> </alpha>", x);
116 TEST(21, 2, x.children().length());
117
118 x.normalize();
119
120 // normalize does not remove whitespace-only text nodes
121 TEST_XML(22, "<alpha><beta/> </alpha>", x);
122 TEST(23, 2, x.children().length());
123
124 y = <foo/>;
125 y.appendChild(XML());
126
127 TEST(24, 1, y.children().length());
128
129 x.appendChild(y);
130
131 // check recursive nature
132
133 x.normalize();
134
135 TEST(25, 0, y.children().length());
136
137 END();