Chromium Code Reviews| Index: test/intl/extra-flag.js |
| diff --git a/test/intl/extra-flag.js b/test/intl/extra-flag.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..efb4df4868a709cba483a028d2ae0d8765b4ba1a |
| --- /dev/null |
| +++ b/test/intl/extra-flag.js |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2016 the V8 project authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Flags: --intl-extra |
| + |
| +// Turning on the creates removes the non-standard properties |
|
adamk
2016/05/11 23:03:02
I think this comment needs s/creates removes/flag
Dan Ehrenberg
2016/05/11 23:57:35
Done
|
| + |
| +var dtf = new Intl.DateTimeFormat(['en']); |
| +assertTrue('v8Parse' in dtf); |
| +assertTrue('resolved' in dtf); |
| +assertTrue(!!dtf.resolved && 'pattern' in dtf.resolved); |
| + |
| +var nf = new Intl.NumberFormat(['en']); |
| +assertTrue('v8Parse' in nf); |
| +assertTrue('resolved' in nf); |
| +assertTrue(!!nf.resolved && 'pattern' in nf.resolved); |
| + |
| +var col = new Intl.Collator(['en']); |
| +assertTrue('resolved' in col); |
| + |
| +var br = new Intl.v8BreakIterator(['en']); |
| +assertTrue('resolved' in br); |