Index: LayoutTests/http/tests/serviceworker/chromium/resources/service-worker-mixed-response.php |
diff --git a/LayoutTests/http/tests/serviceworker/chromium/resources/service-worker-mixed-response.php b/LayoutTests/http/tests/serviceworker/chromium/resources/service-worker-mixed-response.php |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0caf706030a73e738e1770d5bc329eea3d2b99bc |
--- /dev/null |
+++ b/LayoutTests/http/tests/serviceworker/chromium/resources/service-worker-mixed-response.php |
@@ -0,0 +1,9 @@ |
+<?php |
+$position = $_GET["position"]; |
+header('HTTP/1.0 206 Partial Content'); |
+header('Content-Type: audio/ogg'); |
+# 12983 is the file size of media/content/silence.oga. |
+header('Content-Range: bytes ' . $position . '-' . $position . '/12983'); |
+header('Access-Control-Allow-Origin: *'); |
+echo substr('Ogg', $position, 1); |
+?> |