Lines Matching refs:df
30 var df = Intl.DateTimeFormat(); variable
31 assertEquals(getDefaultTimeZone(), df.resolvedOptions().timeZone);
33 df = Intl.DateTimeFormat(undefined, {timeZone: 'UtC'});
34 assertEquals('UTC', df.resolvedOptions().timeZone);
36 df = Intl.DateTimeFormat(undefined, {timeZone: 'gmt'});
37 assertEquals('UTC', df.resolvedOptions().timeZone);
39 df = Intl.DateTimeFormat(undefined, {timeZone: 'America/Los_Angeles'});
40 assertEquals('America/Los_Angeles', df.resolvedOptions().timeZone);
42 df = Intl.DateTimeFormat(undefined, {timeZone: 'Europe/Belgrade'});
43 assertEquals('Europe/Belgrade', df.resolvedOptions().timeZone);
46 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/UTC'});
47 assertEquals('UTC', df.resolvedOptions().timeZone);
49 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/GMT'});
50 assertEquals('UTC', df.resolvedOptions().timeZone);
52 df = Intl.DateTimeFormat(undefined, {timeZone: 'euRope/beLGRade'});
53 assertEquals('Europe/Belgrade', df.resolvedOptions().timeZone);