Title: [154514] trunk/LayoutTests
Revision
154514
Author
[email protected]
Date
2013-08-23 13:23:06 -0700 (Fri, 23 Aug 2013)

Log Message

LayoutTests/http/tests/media/video-throttled-load.cgi issue on range support
https://bugs.webkit.org/show_bug.cgi?id=120219

Patch by Andre Moreira Magalhaes <[email protected]> on 2013-08-23
Reviewed by Eric Carlson.

Properly count bytes when handling range requests.

* http/tests/media/video-throttled-load.cgi:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (154513 => 154514)


--- trunk/LayoutTests/ChangeLog	2013-08-23 20:16:25 UTC (rev 154513)
+++ trunk/LayoutTests/ChangeLog	2013-08-23 20:23:06 UTC (rev 154514)
@@ -1,3 +1,14 @@
+2013-08-23  Andre Moreira Magalhaes   <[email protected]>
+
+        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  <[email protected]>
 
         http/tests/cache/partitioned-cache.html breaks subsequent cookie tests

Modified: trunk/LayoutTests/http/tests/media/video-throttled-load.cgi (154513 => 154514)


--- trunk/LayoutTests/http/tests/media/video-throttled-load.cgi	2013-08-23 20:16:25 UTC (rev 154513)
+++ trunk/LayoutTests/http/tests/media/video-throttled-load.cgi	2013-08-23 20:23:06 UTC (rev 154514)
@@ -66,7 +66,7 @@
 open FILE, $name or die;
 binmode FILE;
 my ($data, $n);
-my $total = 0;
+my $total = $parsedRange[0];
 
 seek(FILE, $parsedRange[0], 0);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to