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

« back to all changes in this revision

Viewing changes to js/src/tests/e4x/Regress/regress-263935.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("Qualified names specifying all names in no namespace should only match names without namespaces");
 
10
printBugNumber(263935);
 
11
 
 
12
var ns1 = new Namespace("http://www.ns1.com");
 
13
var ns2 = new Namespace("http://www.ns2.com");
 
14
var none = new Namespace();
 
15
 
 
16
var x = <x/>
 
17
x.foo = "one";
 
18
x.ns1::foo = "two";
 
19
x.ns2::foo = "three";
 
20
x.bar = "four";
 
21
 
 
22
var actual = x.none::*;
 
23
 
 
24
var expected =
 
25
<>
 
26
  <foo>one</foo>
 
27
  <bar>four</bar>
 
28
</>
 
29
 
 
30
TEST(1, expected, actual);
 
31
 
 
32
END();