Fix indentation in /speed and /test dirs, closes gh-780.

This commit is contained in:
Trey Hunner
2012-05-18 13:28:50 -04:00
committed by Dave Methvin
parent c4df0c91be
commit f1dcaad097
18 changed files with 646 additions and 646 deletions

View File

@@ -6,8 +6,8 @@ $etag = md5($ts);
$ifNoneMatch = isset($_SERVER['HTTP_IF_NONE_MATCH']) ? stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) : false;
if ($ifNoneMatch == $etag) {
header('HTTP/1.0 304 Not Modified');
die; // stop processing
header('HTTP/1.0 304 Not Modified');
die; // stop processing
}
header("Etag: " . $etag);

View File

@@ -17,7 +17,7 @@ if ( document.attachEvent ) {
jQuery("body").append("<div>modifying DOM</div>");
window.parent.iframeCallback( true );
});
}
}
document.getElementsByTagName("head")[ 0 ].appendChild( el );
el.src = "../include_js.php";
}, 1000 );
@@ -28,4 +28,4 @@ if ( document.attachEvent ) {
<!-- long loading iframe -->
<iframe src="longLoad.php?sleep=15&return=false" style="width: 1px; height: 1px"></iframe>
</body>
</html>
</html>

View File

@@ -5,8 +5,8 @@ $ts = $_REQUEST['ts'];
$ifModifiedSince = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? stripslashes($_SERVER['HTTP_IF_MODIFIED_SINCE']) : false;
if ($ifModifiedSince == $ts) {
header('HTTP/1.0 304 Not Modified');
die; // stop processing
header('HTTP/1.0 304 Not Modified');
die; // stop processing
}
header("Last-Modified: " . $ts);

View File

@@ -1,8 +1,8 @@
<html>
<head>
<title>iframe</title>
</head>
<body>
<div><span>span text</span></div>
</body>
<head>
<title>iframe</title>
</head>
<body>
<div><span>span text</span></div>
</body>
</html>