Lines Matching refs:df
34 df = Intl.DateTimeFormat(undefined, {timeZone: 'UtC'});
35 assertEquals('UTC', df.resolvedOptions().timeZone);
37 df = Intl.DateTimeFormat(undefined, {timeZone: 'gmt'});
38 assertEquals('UTC', df.resolvedOptions().timeZone);
40 df = Intl.DateTimeFormat(undefined, {timeZone: 'America/Los_Angeles'});
41 assertEquals('America/Los_Angeles', df.resolvedOptions().timeZone);
43 df = Intl.DateTimeFormat(undefined, {timeZone: 'Europe/Belgrade'});
44 assertEquals('Europe/Belgrade', df.resolvedOptions().timeZone);
47 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/UTC'});
48 assertEquals('UTC', df.resolvedOptions().timeZone);
50 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/GMT'});
51 assertEquals('UTC', df.resolvedOptions().timeZone);
53 df = Intl.DateTimeFormat(undefined, {timeZone: 'euRope/beLGRade'});
54 assertEquals('Europe/Belgrade', df.resolvedOptions().timeZone);