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

Side by Side Diff: LayoutTests/http/tests/serviceworker/chromium/resources/service-worker-proxied-mixed-response.php

Issue 1226473002: Add LayoutTests for mixed range response handling. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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
(Empty)
1 <?php
2 header('HTTP/1.0 206 Partial Content');
3 header('Content-Type: audio/ogg');
4 header('Content-Range: bytes 0-3/12983');
5 echo 'Ogg';
6 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698