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

Side by Side Diff: LayoutTests/http/tests/inspector/network/resources/json.php

Issue 94893003: Support for json media types as (non-image) mime types. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test via synthetic NetworkRequest Created 7 years 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 header("Content-Type: application/json"); 2 header("Content-Type: " . (isset($_GET["type"]) ? $_GET["type"] : "application/j son"));
3 ?> 3 ?>
4 {"number": "42"} 4 {"number": "42"}
5
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698