~ubuntu-branches/ubuntu/saucy/mozjs17/saucy

« back to all changes in this revision

Viewing changes to js/src/tests/e4x/XML/13.4.4.18.js

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2013-05-25 12:24:23 UTC
  • Revision ID: package-import@ubuntu.com-20130525122423-zmxucrhtensw90xy
Tags: upstream-17.0.0
ImportĀ upstreamĀ versionĀ 17.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// |reftest| pref(javascript.options.xml.content,true)
 
2
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 
3
 *
 
4
 * This Source Code Form is subject to the terms of the Mozilla Public
 
5
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 
6
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
7
 
 
8
 
 
9
START("13.4.4.18 - XML insertChildAfter()");
 
10
 
 
11
TEST(1, true, XML.prototype.hasOwnProperty("insertChildAfter"));
 
12
 
 
13
x =
 
14
<alpha>
 
15
    <bravo>one</bravo>
 
16
    <charlie>two</charlie>
 
17
</alpha>;
 
18
 
 
19
correct =
 
20
<alpha>
 
21
    <bravo>one</bravo>
 
22
    <delta>three</delta>
 
23
    <charlie>two</charlie>
 
24
</alpha>;
 
25
 
 
26
x.insertChildAfter(x.bravo[0], <delta>three</delta>);
 
27
 
 
28
TEST(2, correct, x);
 
29
 
 
30
x =
 
31
<alpha>
 
32
    <bravo>one</bravo>
 
33
    <charlie>two</charlie>
 
34
</alpha>;
 
35
 
 
36
correct =
 
37
<alpha>
 
38
    <delta>three</delta>
 
39
    <bravo>one</bravo>
 
40
    <charlie>two</charlie>
 
41
</alpha>;
 
42
 
 
43
x.insertChildAfter(null, <delta>three</delta>);
 
44
 
 
45
TEST(3, correct, x);
 
46
 
 
47
 
 
48
END();