Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / Regress / regress-233483-2.js
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
4  *
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/
9  *
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.
14  *
15  * The Original Code is JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Mozilla Foundation.
19  * Portions created by the Initial Developer are Copyright (C) 2005
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s): Alexander LAW <1@1o.ru>
23  *                 WADA <m-wada@japan.com>
24  *                 Bob Clary <bob@clary.com>
25  *
26  * Alternatively, the contents of this file may be used under the terms of
27  * either the GNU General Public License Version 2 or later (the "GPL"), or
28  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29  * in which case the provisions of the GPL or the LGPL are applicable instead
30  * of those above. If you wish to allow use of your version of this file only
31  * under the terms of either the GPL or the LGPL, and not to allow others to
32  * use your version of this file under the terms of the MPL, indicate your
33  * decision by deleting the provisions above and replace them with the notice
34  * and other provisions required by the GPL or the LGPL. If you do not delete
35  * the provisions above, a recipient may use your version of this file under
36  * the terms of any one of the MPL, the GPL or the LGPL.
37  *
38  * ***** END LICENSE BLOCK ***** */
39
40 //-----------------------------------------------------------------------------
41 var BUGNUMBER = 233483;
42 var summary = 'Don\'t crash with null properties - Browser only';
43 var actual = 'No Crash';
44 var expect = 'No Crash';
45
46 printBugNumber(BUGNUMBER);
47 printStatus (summary);
48
49 if (typeof document == 'undefined')
50 {
51   reportCompare(expect, actual, summary);
52 }
53 else
54
55   // delay test driver end
56   gDelayTestDriverEnd = true;
57
58   actual = 'Crash';
59   window.onload = onLoad;
60 }
61
62 function onLoad()
63 {
64   var a = new Array();
65   var pe;
66   var x;
67   var s;
68
69   setform();
70
71   for (pe=document.getElementById("test"); pe; pe=pe.parentNode)
72   {
73     a[a.length] = pe;
74   }
75
76   // can't document.write since this is in after load fires
77   s = a.toString();
78
79   actual = 'No Crash';
80
81   reportCompare(expect, actual, summary);
82
83   gDelayTestDriverEnd = false;
84   jsTestDriverEnd();
85 }
86
87 function setform()
88 {
89   var form  = document.body.appendChild(document.createElement('form'));
90   var table = form.appendChild(document.createElement('table'));
91   var tbody = table.appendChild(document.createElement('tbody'));
92   var tr    = tbody.appendChild(document.createElement('tr'));
93   var td    = tr.appendChild(document.createElement('td'))
94     var input = td.appendChild(document.createElement('input'));
95
96   input.setAttribute('id', 'test');
97   input.setAttribute('value', '1232');
98
99 }