aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorTrey Hunner <treyhunner@gmail.com>2012-05-18 13:28:50 -0400
committerDave Methvin <dave.methvin@gmail.com>2012-05-18 13:28:50 -0400
commitf1dcaad09736c194f9148e5bf5fb08498a483a7a (patch)
treec4de3c9b5b52643e6cf894a2154101b23dafa53c /test/data
parentc4df0c91bed4358ddca4b493afc06c69e5b501f0 (diff)
downloadjquery-f1dcaad09736c194f9148e5bf5fb08498a483a7a.tar.gz
jquery-f1dcaad09736c194f9148e5bf5fb08498a483a7a.zip
Fix indentation in /speed and /test dirs, closes gh-780.
Diffstat (limited to 'test/data')
-rw-r--r--test/data/etag.php4
-rw-r--r--test/data/event/asyncReady.html4
-rw-r--r--test/data/if_modified_since.php4
-rw-r--r--test/data/iframe.html12
4 files changed, 12 insertions, 12 deletions
diff --git a/test/data/etag.php b/test/data/etag.php
index 7bcfcd1e6..f6abc26e4 100644
--- a/test/data/etag.php
+++ b/test/data/etag.php
@@ -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);
diff --git a/test/data/event/asyncReady.html b/test/data/event/asyncReady.html
index 0b389d854..1d18efc17 100644
--- a/test/data/event/asyncReady.html
+++ b/test/data/event/asyncReady.html
@@ -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> \ No newline at end of file
+</html>
diff --git a/test/data/if_modified_since.php b/test/data/if_modified_since.php
index e37a93e57..098b7da85 100644
--- a/test/data/if_modified_since.php
+++ b/test/data/if_modified_since.php
@@ -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);
diff --git a/test/data/iframe.html b/test/data/iframe.html
index 3ff26e161..ad646c430 100644
--- a/test/data/iframe.html
+++ b/test/data/iframe.html
@@ -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>