Adds jQuery collection to objects that will be used as global events context if provi...
[jquery.git] / test / polluted.php
index ebe4509..55df0dd 100644 (file)
@@ -1,64 +1,64 @@
-<?php\r
-       if( count($_POST) ){ // second call\r
-               $includes = array();\r
-               foreach( $_POST as $lib=>$ver ){\r
-                       if( !$ver )\r
-                               continue;\r
-                       $include = "<script type='text/javascript' src='otherlibs/$lib/$ver/$lib.js'></script>\n";\r
-                       if( $lib == 'prototype' ) // prototype must be included first\r
-                               array_unshift( $includes, $include );\r
-                       else\r
-                               array_push( $includes, $include );\r
-               }\r
-\r
-               $includes = implode( "\n", $includes );\r
-               $suite = file_get_contents('index.html');\r
-               echo str_replace( '<!-- Includes -->', $includes, $suite );\r
-               exit;\r
-       }       \r
-?>\r
-\r
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html">\r
-<head>\r
-       <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r
-       <title>jQuery Test Suite</title>\r
-       <link rel="Stylesheet" media="screen" href="qunit/testsuite.css" />\r
-       <link rel="Stylesheet" media="screen" href="data/otherlibs.css" />\r
-       <style type="text/css">\r
-               form.otherlibs{\r
-                       margin: 20px 0 0 30px;\r
-               }\r
-               form.otherlibs label{\r
-                       display:block;\r
-                       margin: 5px 0 5px 30px;\r
-               }\r
-               form.otherlibs input.submit{\r
-                       margin:30px 0 0 0;\r
-               }\r
-       </style>\r
-</head>\r
-\r
-<body id="body">\r
-       <h1 id="header">jQuery Test Suite</h1>\r
-       <h2 id="banner" class="fail"></h2>\r
-       <h2 id="userAgent">Choose other libraries to include</h2>\r
-       \r
-       <form class="otherlibs" action="" method="post">\r
-               <?php\r
-                       $libs = scandir('otherlibs');\r
-                       foreach( $libs as $lib ){\r
-                               if( $lib[0] == '.' )\r
-                                       continue;\r
-                               echo "<h3>$lib</h3>";\r
-                               $vers = scandir( "otherlibs/$lib");\r
-                               foreach( $vers as $ver ){\r
-                                       if( $ver[0] != '.' )\r
-                                               echo "<label><input type='checkbox' name='$lib' value='$ver'>$ver</label>";\r
-                               }\r
-                       }\r
-               ?>\r
-               <input type="submit" value="Run" class="submit" />\r
-       </form>\r
-</body>\r
-</html>\r
+<?php
+       if( count($_POST) ){ // second call
+               $includes = array();
+               foreach( $_POST as $lib=>$ver ){
+                       if( !$ver )
+                               continue;
+                       $include = "<script type='text/javascript' src='otherlibs/$lib/$ver/$lib.js'></script>\n";
+                       if( $lib == 'prototype' ) // prototype must be included first
+                               array_unshift( $includes, $include );
+                       else
+                               array_push( $includes, $include );
+               }
+
+               $includes = implode( "\n", $includes );
+               $suite = file_get_contents('index.html');
+               echo str_replace( '<!-- Includes -->', $includes, $suite );
+               exit;
+       }
+?>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html">
+<head>
+       <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+       <title>jQuery Test Suite</title>
+       <link rel="Stylesheet" media="screen" href="qunit/testsuite.css" />
+       <link rel="Stylesheet" media="screen" href="data/otherlibs.css" />
+       <style type="text/css">
+               form.otherlibs{
+                       margin: 20px 0 0 30px;
+               }
+               form.otherlibs label{
+                       display:block;
+                       margin: 5px 0 5px 30px;
+               }
+               form.otherlibs input.submit{
+                       margin:30px 0 0 0;
+               }
+       </style>
+</head>
+
+<body id="body">
+       <h1 id="header">jQuery Test Suite</h1>
+       <h2 id="banner" class="fail"></h2>
+       <h2 id="userAgent">Choose other libraries to include</h2>
+
+       <form class="otherlibs" action="" method="post">
+               <?php
+                       $libs = scandir('otherlibs');
+                       foreach( $libs as $lib ){
+                               if( $lib[0] == '.' )
+                                       continue;
+                               echo "<h3>$lib</h3>";
+                               $vers = scandir( "otherlibs/$lib");
+                               foreach( $vers as $ver ){
+                                       if( $ver[0] != '.' )
+                                               echo "<label><input type='checkbox' name='$lib' value='$ver'>$ver</label>";
+                               }
+                       }
+               ?>
+               <input type="submit" value="Run" class="submit" />
+       </form>
+</body>
+</html>