js/src/tests/test262/ch11/11.8/11.8.3/S11.8.3_A4.10.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * If y is a prefix of x and x !== y, return false
     6  *
     7  * @path ch11/11.8/11.8.3/S11.8.3_A4.10.js
     8  * @description x and y are string primitives
     9  */
    11 //CHECK#1
    12 if (("x " <= "x") !== false) {
    13   $ERROR('#1: ("x " <= "x") === false');
    14 }
    16 //CHECK#2
    17 if (("x" <= "") !== false) {
    18   $ERROR('#2: ("x" <= "") === false');
    19 }
    21 //CHECK#3
    22 if (("abcd" <= "ab") !== false) {
    23   $ERROR('#3: ("abcd" <= ab") === false');
    24 }
    26 //CHECK#4
    27 if (("abc\u0064" <= "abcd") !== true) {
    28   $ERROR('#4: ("abc\\u0064" <= abcd") === true');
    29 }
    31 //CHECK#5
    32 if (("x" + "y" <= "x") !== false) {
    33   $ERROR('#5: ("x" + "y" <= "x") === false');
    34 }
    36 //CHECK#6
    37 var x = "x";
    38 if ((x + 'y' <= x) !== false) {
    39   $ERROR('#6: var x = "x"; (x + "y" <= x) === false');
    40 }

mercurial