mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195.
This commit is contained in:
15
test/data/css.php
Normal file
15
test/data/css.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user