~ubuntu-branches/ubuntu/wily/mozjs17/wily

« back to all changes in this revision

Viewing changes to js/src/tests/e4x/Expressions/11.1.4-01.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
/* This Source Code Form is subject to the terms of the Mozilla Public
 
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 
5
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
6
 
 
7
 
 
8
var summary = '11.1.4 - XML Initializer should accept single processing ' +
 
9
    'instruction';
 
10
var BUGNUMBER = 257679;
 
11
var actual = '';
 
12
var expect = 'processing-instruction';
 
13
 
 
14
printBugNumber(BUGNUMBER);
 
15
START(summary);
 
16
 
 
17
XML.ignoreProcessingInstructions = false;
 
18
print("XML.ignoreProcessingInstructions: " + XML.ignoreProcessingInstructions);
 
19
var pi = <?process Kibology="on"?>;
 
20
if (pi) {
 
21
    actual = pi.nodeKind();
 
22
}
 
23
else {
 
24
    actual = 'undefined';
 
25
}
 
26
 
 
27
TEST(1, expect, actual);
 
28
 
 
29
END();