Index: Source/core/fileapi/File.idl |
diff --git a/Source/core/fileapi/File.idl b/Source/core/fileapi/File.idl |
index fdbe18db4fdda887c85918bd421123a17754e777..1f90d167fa71b8dca014dfebd68d11d3b673857d 100644 |
--- a/Source/core/fileapi/File.idl |
+++ b/Source/core/fileapi/File.idl |
@@ -28,7 +28,7 @@ |
CustomConstructor(sequence<any> blobParts, DOMString fileName, optional BlobPropertyBag options) |
] interface File : Blob { |
readonly attribute DOMString name; |
- readonly attribute Date lastModifiedDate; |
+ [Custom=Getter] readonly attribute Date lastModifiedDate; |
+ [Custom=Getter, RuntimeEnabled=FileConstructor] readonly attribute long long lastModified; |
[RuntimeEnabled=DirectoryUpload] readonly attribute DOMString webkitRelativePath; |
}; |
- |