Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* vim:set ts=2 sw=2 sts=2 et: */ |
michael@0 | 2 | /* ***** BEGIN LICENSE BLOCK ***** |
michael@0 | 3 | * Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | * http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 5 | * |
michael@0 | 6 | * Contributor(s): |
michael@0 | 7 | * Patrick Walton <pcwalton@mozilla.com> |
michael@0 | 8 | * |
michael@0 | 9 | * ***** END LICENSE BLOCK ***** */ |
michael@0 | 10 | |
michael@0 | 11 | // Tests that appropriately-localized timestamps are printed. |
michael@0 | 12 | |
michael@0 | 13 | const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-console.html"; |
michael@0 | 14 | |
michael@0 | 15 | function test() { |
michael@0 | 16 | addTab(TEST_URI); |
michael@0 | 17 | browser.addEventListener("DOMContentLoaded", testTimestamp, false); |
michael@0 | 18 | |
michael@0 | 19 | function testTimestamp() |
michael@0 | 20 | { |
michael@0 | 21 | browser.removeEventListener("DOMContentLoaded", testTimestamp, false); |
michael@0 | 22 | const TEST_TIMESTAMP = 12345678; |
michael@0 | 23 | let date = new Date(TEST_TIMESTAMP); |
michael@0 | 24 | let localizedString = WCU_l10n.timestampString(TEST_TIMESTAMP); |
michael@0 | 25 | isnot(localizedString.indexOf(date.getHours()), -1, "the localized " + |
michael@0 | 26 | "timestamp contains the hours"); |
michael@0 | 27 | isnot(localizedString.indexOf(date.getMinutes()), -1, "the localized " + |
michael@0 | 28 | "timestamp contains the minutes"); |
michael@0 | 29 | isnot(localizedString.indexOf(date.getSeconds()), -1, "the localized " + |
michael@0 | 30 | "timestamp contains the seconds"); |
michael@0 | 31 | isnot(localizedString.indexOf(date.getMilliseconds()), -1, "the localized " + |
michael@0 | 32 | "timestamp contains the milliseconds"); |
michael@0 | 33 | finishTest(); |
michael@0 | 34 | } |
michael@0 | 35 | } |
michael@0 | 36 |