Sign in
webkit
/
WebKit
/
e031b9a93e1290978c3cb10583e857c51cbd591e
/
.
/
LayoutTests
/
http
/
tests
/
navigation
/
resources
/
reload-subframe-content.pl
blob: 9eead4ef7063b1835d8b3b7873598c2f524051ce [
file
] [
log
] [
blame
]
#!/usr/bin/perl
print
"Content-type: text/plain\r\n"
;
print
"\r\n"
;
@keypairs
=
split
(
/&/
,
$ENV
{
'QUERY_STRING'
});
$text
=
""
;
foreach
$pair
(
@keypairs
)
{
(
$name
,
$value
)
=
split
(
/=/
,
$pair
);
if
(
$name eq
"text"
)
{
$text
=
$value
;
}
}
print
$text
;