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

Unified Diff: Source/devtools/front_end/resources/DirectoryContentView.js

Issue 300103007: DevTools: Use toISOString instead of toGMTString for dates. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/components/CookiesTable.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/resources/DirectoryContentView.js
diff --git a/Source/devtools/front_end/resources/DirectoryContentView.js b/Source/devtools/front_end/resources/DirectoryContentView.js
index 8fa30629fae15b53d897e95392e246ea4838aff0..9ec66991ba371e96111bb1f02159120f54823f5a 100644
--- a/Source/devtools/front_end/resources/DirectoryContentView.js
+++ b/Source/devtools/front_end/resources/DirectoryContentView.js
@@ -176,7 +176,7 @@ WebInspector.DirectoryContentView.Node.prototype = {
data[indexes.Size] = WebInspector.UIString("-");
else
data[indexes.Size] = Number.bytesToString(metadata.size);
- data[indexes.ModificationTime] = new Date(metadata.modificationTime).toGMTString();
+ data[indexes.ModificationTime] = new Date(metadata.modificationTime).toISOString();
this.data = data;
},
« no previous file with comments | « Source/devtools/front_end/components/CookiesTable.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698