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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php

Issue 1356353003: Relax cross-origin partial response requirements for CORS presence. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert accidental php change. Created 5 years, 2 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 $norange = $_GET["norange"];
6 $cors_allow_origin = $_GET["cors_allow_origin"];
6 7
7 $_GET = array(); 8 $_GET = array();
8 $_GET['name'] = $fileName; 9 $_GET['name'] = $fileName;
9 $_GET['type'] = $type; 10 $_GET['type'] = $type;
10 $_GET['norange'] = $norange; 11 $_GET['norange'] = $norange;
12 $_GET['cors_allow_origin'] = $cors_allow_origin;
11 @include("./serve-video.php"); 13 @include("./serve-video.php");
12 14
13 ?> 15 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698