git.asbjorn.biz
/
jquery.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixes #8054 by reverting feature enhancement 5812 (4920). Regexps no longer searches...
[jquery.git]
/
test
/
data
/
css.php
1
<?php
2
error_reporting(0);
3
$id = isset ( $_REQUEST['id'] ) ? $_REQUEST['id'] : null;
4
$wait = isset( $_REQUEST['wait'] ) ? $_REQUEST['wait'] : null;
5
6
if ( $wait ) sleep( $wait );
7
8
header("Content-type: text/css");
9
10
if ( $id ) {
11
?>
12
div#<?= $id ?> { margin-left: 27px }
13
<?php
14
}
15
?>