aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/css.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/css.php')
-rw-r--r--test/data/css.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/data/css.php b/test/data/css.php
deleted file mode 100644
index 9d079e73f..000000000
--- a/test/data/css.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-error_reporting(0);
-$id = isset ( $_REQUEST['id'] ) ? $_REQUEST['id'] : null;
-$wait = isset( $_REQUEST['wait'] ) ? $_REQUEST['wait'] : null;
-
-if ( $wait ) sleep( $wait );
-
-header("Content-type: text/css");
-
-if ( $id ) {
- ?>
- div#<?= $id ?> { margin-left: 27px }
- <?php
-}
-?> \ No newline at end of file