summaryrefslogtreecommitdiff
path: root/plugins/Minify/extlib/minify/min_unit_tests/HTTP_Encoder/index.php
blob: c9a391d07b8fe5a9cd2ff78ce0101af7295f3dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
ini_set('display_errors', 'on');

set_include_path(get_include_path() . PATH_SEPARATOR . realpath(dirname(__FILE__) . '/../../min/lib'));
require 'HTTP/Encoder.php';

if (!isset($_GET['test'])) {
    $type = 'text/html';
    ob_start();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>HTTP_Encoder Test</title>
<style type="text/css">
@import "?test=2";
#img {background:url("?test=1");}
.green {background:#0f0;}
p span {padding:0 .5em;}
</style>
</head>
<body>
<h1>HTTP_Encoder test</h1>
<p><span class="green"> HTML </span></p>
<p><span id="css"> CSS </span></p>
<p><span id="js"> Javascript </span></p>
<p><span id="img"> image </span></p>
<script src="?test=3" type="text/javascript"></script>
</body>
</html>
<?php
    $content = ob_get_contents();
    ob_end_clean();

} elseif ($_GET['test'] == '1') {
    $content = file_get_contents(dirname(__FILE__) . '/green.png');
    $type = 'image/png';

} elseif ($_GET['test'] == '2') {
    $content = '#css {background:#0f0;}';
    $type = 'text/css';

} else {
    $content = '
window.onload = function(){
    document.getElementById("js").className = "green";
};
    ';
    $type = 'application/x-javascript';
}

$he = new HTTP_Encoder(array(
    'content' => $content
    ,'type' => $type
));
$he->encode();
$he->sendAll();

?>