Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(766)

Side by Side Diff: LayoutTests/http/tests/misc/last-modified-parsing.html

Issue 394903004: document.lastModified should consider user's local time zone (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <script>
2 if (window.testRunner) {
3 testRunner.dumpAsText();
4 testRunner.dumpChildFramesAsText();
5 }
6
7 function test(text) {
8 document.write('<iframe src="../resources/last-modified.php?date=' + escape( text) + '"></iframe>');
9 }
10
11 test('Mon, 21 Nov 2008 01:03:33 GMT');
12 test('Tuesday, 21 Nov 2008 01:03:33 GMT');
13 test('Mon, 21 Nov 97 01:03:33 GMT');
14 test('Mon, 21-Nov-2008 01:03:33 GMT');
15 test('Mon, 21-Feb-2008 01:03:33 GMT');
16 test('Mon, 03-Feb-2008 01:03:33 GMT');
17 test('Mon, 3-Mar-2008 01:03:33 GMT');
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698