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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <?php 1 <?php
2 2
3 $fileName = $_GET["name"]; 3 $fileName = $_GET["name"];
4 $type = $_GET["type"]; 4 $type = $_GET["type"];
5 $norange = $_GET["norange"];
5 6
6 $_GET = array(); 7 $_GET = array();
7 $_GET['name'] = $fileName; 8 $_GET['name'] = $fileName;
8 $_GET['type'] = $type; 9 $_GET['type'] = $type;
9 @include("./serve-video.php"); 10 $_GET['norange'] = $norange;
11 @include("./serve-video.php");
10 12
11 ?> 13 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698