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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php b/third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php
index 8f0e8eb80366812905369844543c1d5570601ea0..8e0bbb95871427e2c860abe4a0ba37e19c22cc32 100644
--- a/third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php
+++ b/third_party/WebKit/LayoutTests/http/tests/media/resources/load-video.php
@@ -3,11 +3,13 @@
$fileName = $_GET["name"];
$type = $_GET["type"];
$norange = $_GET["norange"];
+ $cors_allow_origin = $_GET["cors_allow_origin"];
$_GET = array();
$_GET['name'] = $fileName;
$_GET['type'] = $type;
$_GET['norange'] = $norange;
+ $_GET['cors_allow_origin'] = $cors_allow_origin;
@include("./serve-video.php");
?>

Powered by Google App Engine
This is Rietveld 408576698