https://bugs.webkit.org/show_bug.cgi?id=120219
Patch by Andre Moreira Magalhaes <andre.magalhaes@collabora.co.uk> on 2013-08-23
Reviewed by Eric Carlson.
Properly count bytes when handling range requests.
* http/tests/media/video-throttled-load.cgi:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@154514
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-08-23 Andre Moreira Magalhaes <andre.magalhaes@collabora.co.uk>
+
+ LayoutTests/http/tests/media/video-throttled-load.cgi issue on range support
+ https://bugs.webkit.org/show_bug.cgi?id=120219
+
+ Reviewed by Eric Carlson.
+
+ Properly count bytes when handling range requests.
+
+ * http/tests/media/video-throttled-load.cgi:
+
2013-08-23 Alexey Proskuryakov <ap@apple.com>
http/tests/cache/partitioned-cache.html breaks subsequent cookie tests
open FILE, $name or die;
binmode FILE;
my ($data, $n);
-my $total = 0;
+my $total = $parsedRange[0];
seek(FILE, $parsedRange[0], 0);