| Index: third_party/WebKit/Source/devtools/front_end/platform/utilities.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
|
| index fb56ae4f8f3c84660b7f5ee12a491e7f6fad03f7..f83537766a6994a1595edd4c0b80ecc2efe8b3cb 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
|
| @@ -408,6 +408,14 @@ Number.toFixedIfFloating = function(value)
|
| }
|
|
|
| /**
|
| + * @return {boolean}
|
| + */
|
| +Date.prototype.isValid = function()
|
| +{
|
| + return !isNaN(this.getTime())
|
| +}
|
| +
|
| +/**
|
| * @return {string}
|
| */
|
| Date.prototype.toISO8601Compact = function()
|
|
|