Bug 970340 - Large file sizes not displayed correctly. r=khuey

This commit is contained in:
Ted Clancy (:tedders1) 2014-02-25 15:38:56 -08:00
parent 03365d2013
commit e6caae28ed

View File

@ -46,10 +46,10 @@ interface DOMDownloadManager : EventTarget {
Func="Navigator::HasDownloadsSupport"]
interface DOMDownload : EventTarget {
// The full size of the resource.
readonly attribute long totalBytes;
readonly attribute long long totalBytes;
// The number of bytes that we have currently downloaded.
readonly attribute long currentBytes;
readonly attribute long long currentBytes;
// The url of the resource.
readonly attribute DOMString url;