|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 //----------------------------------------------------------------------------- |
|
7 var BUGNUMBER = 368516; |
|
8 var summary = 'Treat unicode BOM characters as whitespace'; |
|
9 var actual = ''; |
|
10 var expect = ''; |
|
11 |
|
12 |
|
13 //----------------------------------------------------------------------------- |
|
14 test(); |
|
15 //----------------------------------------------------------------------------- |
|
16 |
|
17 function test() |
|
18 { |
|
19 enterFunc ('test'); |
|
20 printBugNumber(BUGNUMBER); |
|
21 printStatus (summary); |
|
22 |
|
23 var bomchars = ['\uFFFE', |
|
24 '\uFEFF']; |
|
25 |
|
26 for (var i = 0; i < bomchars.length; i++) |
|
27 { |
|
28 expect = 'howdie'; |
|
29 actual = ''; |
|
30 |
|
31 try |
|
32 { |
|
33 eval("var" + bomchars[i] + "hithere = 'howdie';"); |
|
34 actual = hithere; |
|
35 } |
|
36 catch(ex) |
|
37 { |
|
38 actual = ex + ''; |
|
39 } |
|
40 |
|
41 reportCompare(expect, actual, summary + ': ' + i); |
|
42 } |
|
43 |
|
44 exitFunc ('test'); |
|
45 } |