blob: 0af1284c879d0c0ea4c2d2dedd125b5bba7a6e77 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script>
function defaultTimeZone() {
return (new Intl.DateTimeFormat()).resolvedOptions().timeZone;
}
promise_test(async t => {
const oldTimeZone = "Pacific/Fakaofo";
const newTimeZone = "Asia/Taipei";
// First, setup the time zone in a fixed place.
await window.test_driver.set_time_zone(oldTimeZone);
assert_equals(defaultTimeZone(), oldTimeZone);
window.received = false; // We need a global variable here.
document.body.setAttribute('ontimezonechange', 'window.received = true;');
await window.test_driver.set_time_zone(newTimeZone);
assert_true(window.received);
assert_equals(defaultTimeZone(), newTimeZone);
}, "Test that the timezonechange event fires on body ontimezonechange attribute");
</script>
</body>
</html>