Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <script> | 1 <script> |
| 2 if (window.testRunner) { | 2 if (window.testRunner) { |
| 3 testRunner.dumpAsText(); | 3 testRunner.dumpAsText(); |
| 4 testRunner.dumpChildFramesAsText(); | 4 testRunner.dumpChildFramesAsText(); |
| 5 } | 5 } |
| 6 | 6 |
| 7 function getExpectedLastModified(lastModified) { | |
| 8 var date = new Date(lastModified); | |
| 9 var month = ("0" + (date.getMonth() + 1)).slice(-2); | |
|
tkent
2014/07/28 00:40:26
nit: quotation mark is inconsistent. Other lines
kangil_
2014/07/31 00:45:45
Done.
| |
| 10 var day = ("0" + date.getDate()).slice(-2); | |
| 11 var hour = ("0" + date.getHours()).slice(-2); | |
| 12 var minute = ("0" + date.getMinutes()).slice(-2); | |
| 13 var second = ("0" + date.getSeconds()).slice(-2); | |
| 14 var result = month + '/' + day + '/' + date.getFullYear() + ' ' + hour + ':' + minute + ':' + second; | |
| 15 return result; | |
| 16 } | |
| 17 | |
| 7 function test(text) { | 18 function test(text) { |
| 8 document.write('<iframe src="../resources/last-modified.php?date=' + escape( text) + '"></iframe>'); | 19 var url = '../resources/last-modified.php?date=' + escape(text) + '&expected =' + escape(getExpectedLastModified(text)); |
| 20 document.write('<iframe id="test" src="' + url + '"></iframe>'); | |
| 9 } | 21 } |
| 10 | 22 |
| 11 test('Mon, 21 Nov 2008 01:03:33 GMT'); | 23 test('Mon, 21 Nov 2008 01:03:33 GMT'); |
| 12 test('Tuesday, 21 Nov 2008 01:03:33 GMT'); | 24 test('Tuesday, 21 Nov 2008 01:03:33 GMT'); |
| 13 test('Mon, 21 Nov 97 01:03:33 GMT'); | 25 test('Mon, 21 Nov 97 01:03:33 GMT'); |
| 14 test('Mon, 21-Nov-2008 01:03:33 GMT'); | 26 test('Mon, 21-Nov-2008 01:03:33 GMT'); |
| 15 test('Mon, 21-Feb-2008 01:03:33 GMT'); | 27 test('Mon, 21-Feb-2008 01:03:33 GMT'); |
| 16 test('Mon, 03-Feb-2008 01:03:33 GMT'); | 28 test('Mon, 03-Feb-2008 01:03:33 GMT'); |
| 17 test('Mon, 3-Mar-2008 01:03:33 GMT'); | 29 test('Mon, 3-Mar-2008 01:03:33 GMT'); |
| 18 </script> | 30 </script> |
| OLD | NEW |