diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2012-06-04 12:48:18 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2012-06-04 12:48:18 -0400 |
commit | 7c23b77af2477417205fda9bde5208a81e57e40e (patch) | |
tree | d325a34f92a4792fc5ee6aee8266b86bd0e25a98 /test/data | |
parent | 9a3046c3752b80da7526dce34968b8422f3d92f8 (diff) | |
download | jquery-7c23b77af2477417205fda9bde5208a81e57e40e.tar.gz jquery-7c23b77af2477417205fda9bde5208a81e57e40e.zip |
Strips IIFEs from modules; Always require built jQuery for tests.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/dimensions/documentLarge.html | 4 | ||||
-rw-r--r-- | test/data/dimensions/documentSmall.html | 4 | ||||
-rw-r--r-- | test/data/event/asyncReady.html | 2 | ||||
-rw-r--r-- | test/data/event/promiseReady.html | 4 | ||||
-rw-r--r-- | test/data/event/syncReady.html | 4 | ||||
-rw-r--r-- | test/data/offset/absolute.html | 2 | ||||
-rw-r--r-- | test/data/offset/body.html | 2 | ||||
-rw-r--r-- | test/data/offset/fixed.html | 2 | ||||
-rw-r--r-- | test/data/offset/relative.html | 2 | ||||
-rw-r--r-- | test/data/offset/scroll.html | 2 | ||||
-rw-r--r-- | test/data/offset/static.html | 2 | ||||
-rw-r--r-- | test/data/offset/table.html | 2 | ||||
-rw-r--r-- | test/data/selector/html5_selector.html | 2 | ||||
-rw-r--r-- | test/data/selector/sizzle_cache.html | 4 | ||||
-rw-r--r-- | test/data/support/bodyBackground.html | 2 | ||||
-rw-r--r-- | test/data/support/testElementCrash.html | 2 |
16 files changed, 21 insertions, 21 deletions
diff --git a/test/data/dimensions/documentLarge.html b/test/data/dimensions/documentLarge.html index 8b434e719..ee9a709ae 100644 --- a/test/data/dimensions/documentLarge.html +++ b/test/data/dimensions/documentLarge.html @@ -11,7 +11,7 @@ </head> <body> <div> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/test/data/dimensions/documentSmall.html b/test/data/dimensions/documentSmall.html index 2d2663328..fe55d2125 100644 --- a/test/data/dimensions/documentSmall.html +++ b/test/data/dimensions/documentSmall.html @@ -15,7 +15,7 @@ </head> <body> <div> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/test/data/event/asyncReady.html b/test/data/event/asyncReady.html index 1d18efc17..f1f6aa20f 100644 --- a/test/data/event/asyncReady.html +++ b/test/data/event/asyncReady.html @@ -19,7 +19,7 @@ if ( document.attachEvent ) { }); } document.getElementsByTagName("head")[ 0 ].appendChild( el ); - el.src = "../include_js.php"; + el.src = "/dist/jquery.js"; }, 1000 ); } </script> diff --git a/test/data/event/promiseReady.html b/test/data/event/promiseReady.html index f799a7e3e..04e45ae8d 100644 --- a/test/data/event/promiseReady.html +++ b/test/data/event/promiseReady.html @@ -3,7 +3,7 @@ <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Test case for jQuery ticket #11470</title> -<script type="text/javascript" src="../include_js.php"></script> +<script type="text/javascript" src="/dist/jquery.js"></script> <script type="text/javascript"> jQuery.when( jQuery.ready ).done(function() { jQuery("body").append("<div>modifying DOM</div>"); @@ -14,4 +14,4 @@ jQuery.when( jQuery.ready ).done(function() { <body> <!-- long loading iframe --> </body> -</html>
\ No newline at end of file +</html> diff --git a/test/data/event/syncReady.html b/test/data/event/syncReady.html index 1b85ce0a8..fcd2ac23a 100644 --- a/test/data/event/syncReady.html +++ b/test/data/event/syncReady.html @@ -3,7 +3,7 @@ <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Test case for jQuery ticket #10067</title> -<script type="text/javascript" src="../include_js.php"></script> +<script type="text/javascript" src="/dist/jquery.js"></script> </head> <body> <script type="text/javascript"> @@ -15,4 +15,4 @@ jQuery( document ).ready(function () { <!-- long loading iframe --> <iframe src="longLoad.php?sleep=10&return=false" style="width: 1px; height: 1px"></iframe> </body> -</html>
\ No newline at end of file +</html> diff --git a/test/data/offset/absolute.html b/test/data/offset/absolute.html index 5a0e4afb4..7d659a382 100644 --- a/test/data/offset/absolute.html +++ b/test/data/offset/absolute.html @@ -15,7 +15,7 @@ p.instructions { position: absolute; bottom: 0; } #positionTest { position: absolute; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.absolute').click(function() { diff --git a/test/data/offset/body.html b/test/data/offset/body.html index ec7668c10..5e955ea73 100644 --- a/test/data/offset/body.html +++ b/test/data/offset/body.html @@ -8,7 +8,7 @@ body { margin: 1px; padding: 5px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('body').click(function() { diff --git a/test/data/offset/fixed.html b/test/data/offset/fixed.html index 8a7b31f19..25e1010f4 100644 --- a/test/data/offset/fixed.html +++ b/test/data/offset/fixed.html @@ -12,7 +12,7 @@ #forceScroll { width: 5000px; height: 5000px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { window.scrollTo(1000,1000); diff --git a/test/data/offset/relative.html b/test/data/offset/relative.html index 361d4b294..8a1203abf 100644 --- a/test/data/offset/relative.html +++ b/test/data/offset/relative.html @@ -10,7 +10,7 @@ #relative-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.relative').click(function() { diff --git a/test/data/offset/scroll.html b/test/data/offset/scroll.html index 17f01d8fc..26cd6fcaf 100644 --- a/test/data/offset/scroll.html +++ b/test/data/offset/scroll.html @@ -13,7 +13,7 @@ #forceScroll { width: 5000px; height: 5000px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { window.scrollTo(1000,1000); diff --git a/test/data/offset/static.html b/test/data/offset/static.html index cb5ed03eb..64f1d7ec0 100644 --- a/test/data/offset/static.html +++ b/test/data/offset/static.html @@ -10,7 +10,7 @@ #static-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.static').click(function() { diff --git a/test/data/offset/table.html b/test/data/offset/table.html index 4a6a7a470..f5bfbb693 100644 --- a/test/data/offset/table.html +++ b/test/data/offset/table.html @@ -10,7 +10,7 @@ th, td { border: 1px solid #000; width: 100px; height: 100px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('table, th, td').click(function() { diff --git a/test/data/selector/html5_selector.html b/test/data/selector/html5_selector.html index ed0bfbc94..99c5bdbfe 100644 --- a/test/data/selector/html5_selector.html +++ b/test/data/selector/html5_selector.html @@ -4,7 +4,7 @@ <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>jQuery selector - attributes</title> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script id="script1" defer diff --git a/test/data/selector/sizzle_cache.html b/test/data/selector/sizzle_cache.html index 6221263fa..6260e2ab9 100644 --- a/test/data/selector/sizzle_cache.html +++ b/test/data/selector/sizzle_cache.html @@ -4,11 +4,11 @@ <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>jQuery selector - sizzle cache</title> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> <script> var $cached = jQuery.noConflict(true); </script> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> </head> <body> diff --git a/test/data/support/bodyBackground.html b/test/data/support/bodyBackground.html index 4f0105a1d..d1d118843 100644 --- a/test/data/support/bodyBackground.html +++ b/test/data/support/bodyBackground.html @@ -17,7 +17,7 @@ </head> <body> <div> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> </div> <script> jQuery(function() { diff --git a/test/data/support/testElementCrash.html b/test/data/support/testElementCrash.html index 6ef9651da..5ea5464b3 100644 --- a/test/data/support/testElementCrash.html +++ b/test/data/support/testElementCrash.html @@ -7,7 +7,7 @@ background: url('http://s1.postimage.org/2d2r8xih0/body_background.png'); } </style> - <script src="../include_js.php"></script> + <script src="/dist/jquery.js"></script> </head> <body> <script> |