Changeset 1013
- Timestamp:
- 07/31/08 06:27:33 (1 month ago)
- Files:
-
- trunk/chrome/content/dta/manager.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/manager.js
r1012 r1013 717 717 case 'content-length': 718 718 let contentLength = new Number(aValue); 719 Debug.logString(contentLength);720 719 if (contentLength > 0 && !isNaN(contentLength)) { 721 this.c contentLength = Math.floor(contentLength);720 this.contentLength = Math.floor(contentLength); 722 721 } 723 722 break; … … 1091 1090 get totalSize() { return this._totalSize; }, 1092 1091 set totalSize(nv) { 1093 Debug.logString(nv + "/" + this._totalSize);1094 1092 if (this._totalSize == nv) { 1095 1093 return nv;
