Revert accidental checkin to NSS.
[wine-gecko.git] / layout / html / tests / TestInsert.js
blob6ab1f56ec34ffb1076ba34d5f626cf6f6b3b0f36
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 var count = 0;
40 function trace(msg)
42 dump("test " + msg + " (" + count + ")\n");
45 function findBody(node)
47 var children = node.childNodes;
48 var length = children.length;
49 var child = null;
50 var count = 0;
51 while (count < length) {
52 child = children.item(count);
53 if (child.tagName == "BODY") {
54 return child;
56 var body = findBody(child);
57 if (null != body) {
58 return body;
60 count++;
62 return null;
65 function TestInsert(parent, child)
67 var childTag = "(text)";
68 if (child.nodeType != Node.TEXT_NODE) {
69 childTag = child.tagName;
72 // Insert a piece of text before the span; this tests insertion at the
73 // beginning
74 trace("insert before [" + parent.tagName + "," + childTag + "]");
75 count++;
76 var beforeText = document.createTextNode("before ");
77 parent.insertBefore(beforeText, child);
79 // Insert a piece of text before the span; after the above, this tests
80 // insertion in the middle.
81 trace("insert middle [" + parent.tagName + "," + childTag + "]");
82 count++;
83 parent.insertBefore(document.createTextNode("middle "), child);
86 var body = findBody(document.documentElement);
88 // Create a block child with a span in it
89 var block = document.createElement("P");
90 var span = document.createElement("SPAN");
91 var spanText = document.createTextNode("Some text");
92 span.insertBefore(spanText, null);
93 block.insertBefore(span, null);
95 // Append the block to the body
96 body.insertBefore(block, null);
98 // Insert stuff into the block
99 TestInsert(block, span);
101 // Insert stuff into the span
102 TestInsert(span, spanText);