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
Родитель be5fd3d218
Коммит e47f55642e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;