Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: LayoutTests/http/tests/media/resources/load-video.php

Issue 562493003: Allow seeks to zero on streaming sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add tests. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/media/resources/load-video.php
diff --git a/LayoutTests/http/tests/media/resources/load-video.php b/LayoutTests/http/tests/media/resources/load-video.php
index 00a39f598c0a66b1c3006ae15d9bfae1cfa3db5d..8f0e8eb80366812905369844543c1d5570601ea0 100644
--- a/LayoutTests/http/tests/media/resources/load-video.php
+++ b/LayoutTests/http/tests/media/resources/load-video.php
@@ -2,10 +2,12 @@
$fileName = $_GET["name"];
$type = $_GET["type"];
+ $norange = $_GET["norange"];
$_GET = array();
$_GET['name'] = $fileName;
$_GET['type'] = $type;
- @include("./serve-video.php");
+ $_GET['norange'] = $norange;
+ @include("./serve-video.php");
?>

Powered by Google App Engine
This is Rietveld 408576698