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

Unified Diff: LayoutTests/http/tests/resources/origin.php

Issue 136693020: Add image loading spec related tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added srcset related tests Created 6 years, 10 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/resources/origin.php
diff --git a/LayoutTests/http/tests/resources/origin.php b/LayoutTests/http/tests/resources/origin.php
new file mode 100644
index 0000000000000000000000000000000000000000..5a34e3add306dbde64ed6a3d30e86ee8087f6b9c
--- /dev/null
+++ b/LayoutTests/http/tests/resources/origin.php
@@ -0,0 +1,16 @@
+<?php
+
+$gotOrigin = 0;
+foreach (getallheaders() as $name => $value) {
+ if ($name == "Origin") {
+ $gotOrigin = 1;
+ }
+}
+
+if ($gotOrigin) {
+ header('Location: square100.png');
+}
+else {
+ header('Location: square200.png');
+}
+header('HTTP/1.1 302 Redirect');

Powered by Google App Engine
This is Rietveld 408576698