1 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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
16 * The Original Code is Rhino code, released
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.
28 * Jeff Walden <jwalden+code@mit.edu>
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.
42 * ***** END LICENSE BLOCK ***** */
44 gTestfile
= '13.4.4.26.js';
46 START("13.4.4.26 - XML normalize()");
48 TEST(1, true, XML
.prototype.hasOwnProperty("normalize"));
50 XML
.ignoreWhitespace
= false;
51 XML
.prettyPrinting
= false;
53 var x
= <alpha
> <bravo
> one
</bravo> </alpha>;
55 TEST_XML(2, "<alpha> <bravo> one </bravo> </alpha>", x
);
57 TEST_XML(3, "<alpha> <bravo> one </bravo> </alpha>", x
);
60 // First, test text node coalescing
64 TEST_XML(4, "<alpha> </alpha>", x
);
65 TEST(5, 2, x
.children().length());
69 TEST_XML(6, "<alpha> </alpha>", x
);
70 TEST(7, 1, x
.children().length());
72 // check that nodes are inserted in the right place after a normalization
74 x
.appendChild(<bravo
> fun
</bravo
>);
76 TEST_XML(8, "<alpha> <bravo> fun </bravo></alpha>", x
);
77 TEST(9, 2, x
.children().length());
81 var y
= <charlie
> <delta
/> </charlie>;
83 TEST(10, 3, y
.children().length());
88 TEST(11, 2, y
.children().length());
92 TEST(12, 1, y
.children().length());
93 TEST(13, 1, x
.charlie
.children().length());
97 // Second, test empty text node removal
99 x
= <alpha
><beta
/></alpha>;
101 TEST_XML(14, "<alpha><beta/></alpha>", x
);
102 TEST(15, 1, x
.children().length());
104 x
.appendChild(XML());
106 TEST_XML(16, "<alpha><beta/></alpha>", x
);
107 TEST(17, 2, x
.children().length());
111 TEST_XML(18, "<alpha><beta/></alpha>", x
);
112 TEST(19, 1, x
.children().length());
114 x
.appendChild(XML(" "));
116 TEST_XML(20, "<alpha><beta/> </alpha>", x
);
117 TEST(21, 2, x
.children().length());
121 // normalize does not remove whitespace-only text nodes
122 TEST_XML(22, "<alpha><beta/> </alpha>", x
);
123 TEST(23, 2, x
.children().length());
126 y
.appendChild(XML());
128 TEST(24, 1, y
.children().length());
132 // check recursive nature
136 TEST(25, 0, y
.children().length());