js/src/tests/test262/ch11/11.8/11.8.1/S11.8.1_A4.10.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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, return false
     6  *
     7  * @path ch11/11.8/11.8.1/S11.8.1_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") !== false) {
    28   $ERROR('#4: ("abc\\u0064" < abcd") === false');
    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