Lines Matching refs:Intl
53 `"Intl" object is NOT present but v8_enable_i18n_support is ${enablei18n}`;
55 common.skip('Intl tests because Intl object not present.');
58 `"Intl" object is present but v8_enable_i18n_support is ${
69 const dtf = new Intl.DateTimeFormat(['en'], {
78 'detailed Intl tests because English is not listed as supported.');
104 const numberFormat = new Intl.NumberFormat(['en']).format(12345.67890);
109 common.printSkipMessage('detailed Intl tests because American English is ' +
115 const numberFormat = new Intl.NumberFormat('en-US', { style: 'percent' });
125 const numberFormat = new Intl.NumberFormat(loc, opts).format(num);
130 const coll = new Intl.Collator(['en'], collOpts);
158 ['-p', 'new Intl.NumberFormat().resolvedOptions().locale'],