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

Side by Side Diff: LayoutTests/http/tests/resources/origin.php

Issue 201143002: Update image data upon changing the img.crossorigin attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix underlying script Created 6 years, 9 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 header('HTTP/1.1 302 Found');
3 $gotOrigin = 0; 3 header('Location: ' . ($_SERVER['HTTP_ORIGIN'] ? 'square100.png' : 'square200.pn g'));
4 foreach (getallheaders() as $name => $value) { 4 ?>
5 if ($name == "Origin") {
6 $gotOrigin = 1;
7 }
8 }
9
10 if ($gotOrigin) {
11 header('Location: square100.png');
12 }
13 else {
14 header('Location: square200.png');
15 }
16 header('HTTP/1.1 302 Redirect');
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/images/image-with-origin-header-expected.txt ('k') | Source/core/html/HTMLImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698