Index: trunk/phase3/tests/qunit/data/qunitOkCall.js |
— | — | @@ -0,0 +1,2 @@ |
| 2 | +start(); |
| 3 | +ok( true, 'Successfully loaded!'); |
Property changes on: trunk/phase3/tests/qunit/data/qunitOkCall.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 4 | + native |
Index: trunk/phase3/tests/qunit/suites/resources/mediawiki/mediawiki.test.bug30825.js |
— | — | @@ -1,2 +0,0 @@ |
2 | | -start(); |
3 | | -ok( true, "Bug 30825 -- protocol-relative URL script load via mw.loader.load"); |
Index: trunk/phase3/tests/qunit/suites/resources/mediawiki/mediawiki.test.js |
— | — | @@ -178,7 +178,7 @@ |
179 | 179 | // Confirm that mw.loader.load() works with protocol-relative URLs |
180 | 180 | var loc = window.location, |
181 | 181 | base = ('//' + loc.hostname + loc.pathname).replace(/\/[^\/]*$/, ''), |
182 | | - target = base + '/suites/resources/mediawiki/mediawiki.test.bug30825.js'; |
| 182 | + target = base + '/data/qunitOkCall.js?' + (new Date()).getTime(); |
183 | 183 | |
184 | 184 | // Async! Include a timeout, as failure in this test leads to neither the |
185 | 185 | // success nor failure callbacks getting called. |