js/src/tests/js1_5/Regress/regress-191668.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_5/Regress/regress-191668.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,70 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +/*
    1.10 + *
    1.11 + * Date:    03 February 2003
    1.12 + * SUMMARY: Testing script containing <!- at internal buffer boundary.
    1.13 + * JS parser must look for HTML comment-opener <!--, but mustn't disallow <!-
    1.14 + *
    1.15 + * See http://bugzilla.mozilla.org/show_bug.cgi?id=191668
    1.16 + *
    1.17 + */
    1.18 +//-----------------------------------------------------------------------------
    1.19 +var UBound = 0;
    1.20 +var BUGNUMBER = 191668;
    1.21 +var summary = 'Testing script containing <!- at internal buffer boundary';
    1.22 +var status = '';
    1.23 +var statusitems = [];
    1.24 +var actual = '';
    1.25 +var actualvalues = [];
    1.26 +var expect= '';
    1.27 +var expectedvalues = [];
    1.28 +
    1.29 +var N = 512;
    1.30 +var j = 0;
    1.31 +var str = 'if (0<!-0) ++j;';
    1.32 +
    1.33 +for (var i=0; i!=N; ++i)
    1.34 +{
    1.35 +  eval(str);
    1.36 +  str = ' ' + str;
    1.37 +}
    1.38 +
    1.39 +status = inSection(1);
    1.40 +actual = j;
    1.41 +expect = N;
    1.42 +addThis();
    1.43 +
    1.44 +
    1.45 +
    1.46 +//-----------------------------------------------------------------------------
    1.47 +test();
    1.48 +//-----------------------------------------------------------------------------
    1.49 +
    1.50 +
    1.51 +
    1.52 +function addThis()
    1.53 +{
    1.54 +  statusitems[UBound] = status;
    1.55 +  actualvalues[UBound] = actual;
    1.56 +  expectedvalues[UBound] = expect;
    1.57 +  UBound++;
    1.58 +}
    1.59 +
    1.60 +
    1.61 +function test()
    1.62 +{
    1.63 +  enterFunc('test');
    1.64 +  printBugNumber(BUGNUMBER);
    1.65 +  printStatus(summary);
    1.66 +
    1.67 +  for (var i=0; i<UBound; i++)
    1.68 +  {
    1.69 +    reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
    1.70 +  }
    1.71 +
    1.72 +  exitFunc ('test');
    1.73 +}

mercurial