Sign in
webkit
/
WebKit
/
bc305334a28f4491ad6c9aac1b58373754ba9a0e
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
get-content.php
blob: 9eabaa9ae2edcfb1d7ac7acf6700778909c814c5 [
file
] [
log
] [
blame
]
<?
php
$content
=
$_GET
[
"content"
]
?
$_GET
[
"content"
]
:
""
;
$type
=
$_GET
[
"type"
]
?
$_GET
[
"type"
]
:
""
;
header
(
"HTTP/1.1 200 OK"
);
header
(
"Content-Type:"
.
$type
);
echo $content
;
exit
;
?>