Index: LayoutTests/http/tests/inspector/network/resources/json.php |
diff --git a/LayoutTests/http/tests/inspector/network/resources/json.php b/LayoutTests/http/tests/inspector/network/resources/json.php |
index e5344a5afe137aeea9a05205c22ff48c38afb6cb..caf6dc3cb84388cec83dbf1de148355453320b3f 100644 |
--- a/LayoutTests/http/tests/inspector/network/resources/json.php |
+++ b/LayoutTests/http/tests/inspector/network/resources/json.php |
@@ -1,5 +1,4 @@ |
<?php |
- header("Content-Type: application/json"); |
+header("Content-Type: " . (isset($_GET["type"]) ? $_GET["type"] : "application/json")); |
?> |
{"number": "42"} |
- |