diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html')
-rw-r--r-- | testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html b/testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html new file mode 100644 index 000000000..e67c04fc8 --- /dev/null +++ b/testing/web-platform/tests/html/dom/documents/resource-metadata-management/document-lastModified-01.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<title>document.lastModified should return current local time</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> + var d = new Date(); + var last_modified = document.lastModified; + var initial_modified = Date.parse(last_modified) / 1000; + var expected = Math.round(d / 1000); + + test(function() { + assert_approx_equals(initial_modified, expected, 2.5); + }, "Date returned by lastModified is current at page load"); + + var pattern = /[0-9]{2}\/[0-9]{2}\/[0-9]{4} ([0-9]{2}):([0-9]{2}):([0-9]{2})/ + + test(function() { + assert_regexp_match(last_modified, pattern, + "Format should match the pattern \"NN/NN/NNNN NN:NN:NN\"."); + }, "Date returned by lastModified is in the form \"MM/DD/YYYY hh:mm:ss\"."); + + + var hours = d.getHours() + var minutes = d.getMinutes() + var seconds = d.getSeconds() + + // Checking whether d and and new instance of Date have the same timezone. + // Do not run the time zone test in the case daylight saving occurs. + var d2 = new Date(); + if (d2.getTimezoneOffset() == d.getTimezoneOffset()) { + test(function() { + var local_time = hours * 60 * 60 + minutes * 60 + seconds; + var m = pattern.exec(last_modified); + var last_modified_time = parseInt(m[1]) * 60 * 60 + parseInt(m[2]) * 60 + parseInt(m[3]); + assert_approx_equals(last_modified_time, local_time, 2, + "Hours and minutes should match local time."); + }, "Date returned by lastModified is in the user's local time zone."); + } + var t = async_test("Date returned by lastModified is current after timeout."); + + setTimeout(function() { + t.step(function() { + var new_modified = Date.parse(document.lastModified) / 1000; + var new_expected = Math.round(new Date() / 1000); + assert_approx_equals(new_modified, new_expected, 2.5, + "(initial value was " + initial_modified + ")"); + t.done(); + }); + }, 4000); +</script> |