Changeset 1111
- Timestamp:
- 2008-10-08 18:19:44 (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
r1110 r1111 756 756 function HttpVisitor() { 757 757 Visitor.apply(this, arguments); 758 // assume ranges are accepted unless indicated otherwise 759 this.acceptRanges = true; 758 760 } 759 761 … … 796 798 797 799 case 'accept-ranges': 798 this.acceptRanges = aValue.toLowerCase().indexOf(' none') == -1;800 this.acceptRanges = aValue.toLowerCase().indexOf('bytes') != -1; 799 801 Debug.logString("acceptrange = " + aValue.toLowerCase()); 800 802 break;
