Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Commit d314fbe

Browse files
committed
updating cross-domain URL used in test-suite test cases
1 parent 14b52d0 commit d314fbe

32 files changed

+121
-121
lines changed

tests/test-LABjs-preloading-1.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
$LAB
3636
.setOptions({AlwaysPreserveOrder:true,UseLocalXHR:false,BasePath:"/test_suite/"})
37-
.script("//labjs.xhr.me/test_suite/testscript1.php?delay=5") // testing protocol-relative pathing
37+
.script("//labjs.getify.com/test_suite/testscript1.php?delay=5") // testing protocol-relative pathing
3838
.script("/test_suite/testscript2.php?delay=3")
3939
.script("testscript3.php?delay=1")
4040
.wait(done);
@@ -55,4 +55,4 @@ <h1>LABjs tests (LABjs with preloading #1)</h1>
5555
</form>
5656

5757
</body>
58-
</html>
58+
</html>

tests/test-LABjs-preloading-10.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333

3434
$LAB
3535
.setOptions({AlwaysPreserveOrder:true})
36-
.script("http://labjs.xhr.me/test_suite/testscript1.php?delay=5") // dupe scripts, only one will be preloaded/loaded
37-
.script("http://labjs.xhr.me/test_suite/testscript1.php?delay=5")
36+
.script("http://labjs.getify.com/test_suite/testscript1.php?delay=5") // dupe scripts, only one will be preloaded/loaded
37+
.script("http://labjs.getify.com/test_suite/testscript1.php?delay=5")
3838
.script("testscript2.php?delay=3")
3939
.script("testscript2.php?delay=7") // 7 second load of script will be long poll for final "done" (~7 secs)
40-
.script("http://labjs.xhr.me/test_suite/testscript3.php?delay=1")
40+
.script("http://labjs.getify.com/test_suite/testscript3.php?delay=1")
4141
.wait(done);
4242

4343
</script>
@@ -56,4 +56,4 @@ <h1>LABjs tests (LABjs with preloading #10)</h1>
5656
</form>
5757

5858
</body>
59-
</html>
59+
</html>

tests/test-LABjs-preloading-11.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333

3434
$LAB
3535
.setOptions({AlwaysPreserveOrder:true,AllowDuplicates:true})
36-
.script("http://labjs.xhr.me/test_suite/testscript1.php?delay=5")
37-
.script("http://labjs.xhr.me/test_suite/testscript1.php?delay=5") // will be allowed since duplicates are allowed
36+
.script("http://labjs.getify.com/test_suite/testscript1.php?delay=5")
37+
.script("http://labjs.getify.com/test_suite/testscript1.php?delay=5") // will be allowed since duplicates are allowed
3838
.script("testscript2.php?delay=3")
3939
.script("testscript2.php?delay=3") // will be allowed since duplicates are allowed
40-
.script("http://labjs.xhr.me/test_suite/testscript3.php?delay=1")
40+
.script("http://labjs.getify.com/test_suite/testscript3.php?delay=1")
4141
.wait(done);
4242

4343
</script>
@@ -56,4 +56,4 @@ <h1>LABjs tests (LABjs with preloading #11)</h1>
5656
</form>
5757

5858
</body>
59-
</html>
59+
</html>

tests/test-LABjs-preloading-12a.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
$LAB
3838
.script(function(){
39-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
39+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4040
else return false;
4141
})
4242
.wait()
@@ -46,7 +46,7 @@
4646
})
4747
.wait()
4848
.script(function(){
49-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
49+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5050
else return false;
5151
})
5252
.wait(done);
@@ -76,4 +76,4 @@ <h1>LABjs tests (LABjs with preloading #12a)</h1>
7676
</form>
7777

7878
</body>
79-
</html>
79+
</html>

tests/test-LABjs-preloading-12b.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
timeDiff.setStartTime();
3636

3737
</script>
38-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
38+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
3939
<script>
4040

4141
$LAB
4242
.script(function(){
43-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
43+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4444
else return false;
4545
})
4646
.wait()
@@ -50,7 +50,7 @@
5050
})
5151
.wait()
5252
.script(function(){
53-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
53+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5454
else return false;
5555
})
5656
.wait(done);
@@ -80,4 +80,4 @@ <h1>LABjs tests (LABjs with preloading #12b)</h1>
8080
</form>
8181

8282
</body>
83-
</html>
83+
</html>

tests/test-LABjs-preloading-12c.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
timeDiff.setStartTime();
3636

3737
</script>
38-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
38+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
3939
<script src="testscript2.php?delay=1"></script>
4040
<script>
4141

4242
$LAB
4343
.script(function(){
44-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
44+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4545
else return false;
4646
})
4747
.wait()
@@ -51,7 +51,7 @@
5151
})
5252
.wait()
5353
.script(function(){
54-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
54+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5555
else return false;
5656
})
5757
.wait(done);
@@ -81,4 +81,4 @@ <h1>LABjs tests (LABjs with preloading #12c)</h1>
8181
</form>
8282

8383
</body>
84-
</html>
84+
</html>

tests/test-LABjs-preloading-12d.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
timeDiff.setStartTime();
3636

3737
</script>
38-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
38+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
3939
<script src="testscript2.php?delay=1"></script>
40-
<script src="http://labjs.xhr.me/test_suite/testscript3.php?delay=1"></script>
40+
<script src="http://labjs.getify.com/test_suite/testscript3.php?delay=1"></script>
4141
<script>
4242

4343
$LAB
4444
.script(function(){
45-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
45+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4646
else return false;
4747
})
4848
.wait()
@@ -52,7 +52,7 @@
5252
})
5353
.wait()
5454
.script(function(){
55-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
55+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5656
else return false;
5757
})
5858
.wait(done);
@@ -82,4 +82,4 @@ <h1>LABjs tests (LABjs with preloading #12d)</h1>
8282
</form>
8383

8484
</body>
85-
</html>
85+
</html>

tests/test-LABjs-preloading-12e.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,26 @@
3737
timeDiff.setStartTime();
3838

3939
</script>
40-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
40+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
4141
<script src="testscript2.php?delay=1"></script>
42-
<script src="http://labjs.xhr.me/test_suite/testscript3.php?delay=1"></script>
42+
<script src="http://labjs.getify.com/test_suite/testscript3.php?delay=1"></script>
4343
<script>
4444

4545
$LAB
4646
.script(function(){
47-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
47+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4848
else return false;
4949
})
5050
.wait()
51-
.script("http://labjs.xhr.me/test_suite/testscript3b.php?delay=2")
51+
.script("http://labjs.getify.com/test_suite/testscript3b.php?delay=2")
5252
.wait()
5353
.script(function(){
5454
if (typeof script2 == "undefined") return "testscript2.php?delay=3";
5555
else return false;
5656
})
5757
.wait()
5858
.script(function(){
59-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
59+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
6060
else return false;
6161
})
6262
.wait(done);
@@ -86,4 +86,4 @@ <h1>LABjs tests (LABjs with preloading #12e)</h1>
8686
</form>
8787

8888
</body>
89-
</html>
89+
</html>

tests/test-LABjs-preloading-12f.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
timeDiff.setStartTime();
3838

3939
</script>
40-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
40+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
4141
<script src="testscript2.php?delay=1"></script>
4242
<script>
4343

4444
$LAB
4545
.script(function(){
46-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
46+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4747
else return false;
4848
})
4949
.wait()
@@ -56,7 +56,7 @@
5656
script2 += " jQuery("+!(!jQuery)+")";
5757
})
5858
.script(function(){
59-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
59+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
6060
else return false;
6161
})
6262
.wait(done);
@@ -86,4 +86,4 @@ <h1>LABjs tests (LABjs with preloading #12f)</h1>
8686
</form>
8787

8888
</body>
89-
</html>
89+
</html>

tests/test-LABjs-preloading-12g.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
timeDiff.setStartTime();
3838

3939
</script>
40-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
40+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
4141
<script src="testscript2.php?delay=1"></script>
4242
<script>
4343

4444
$LAB
4545
.script(function(){
46-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
46+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4747
else return false;
4848
})
4949
.wait()
@@ -56,7 +56,7 @@
5656
script2 += " jQuery("+!(!jQuery)+")";
5757
})
5858
.script(function(){
59-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
59+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
6060
else return false;
6161
})
6262
.wait(done);
@@ -86,4 +86,4 @@ <h1>LABjs tests (LABjs with preloading #12g)</h1>
8686
</form>
8787

8888
</body>
89-
</html>
89+
</html>

tests/test-LABjs-preloading-13a.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
$LAB
3838
.setOptions({AlwaysPreserveOrder:true})
3939
.script(function(){
40-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
40+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4141
else return false;
4242
})
4343
.script(function(){
4444
if (typeof script2 == "undefined") return "testscript2.php?delay=3";
4545
else return false;
4646
})
4747
.script(function(){
48-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
48+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
4949
else return false;
5050
})
5151
.wait(done);
@@ -75,4 +75,4 @@ <h1>LABjs tests (LABjs with preloading #13a)</h1>
7575
</form>
7676

7777
</body>
78-
</html>
78+
</html>

tests/test-LABjs-preloading-13b.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@
3535
timeDiff.setStartTime();
3636

3737
</script>
38-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
38+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
3939
<script>
4040

4141
$LAB
4242
.setOptions({AlwaysPreserveOrder:true})
4343
.script(function(){
44-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
44+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4545
else return false;
4646
})
4747
.script(function(){
4848
if (typeof script2 == "undefined") return "testscript2.php?delay=3";
4949
else return false;
5050
})
5151
.script(function(){
52-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
52+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5353
else return false;
5454
})
5555
.wait(done);
@@ -79,4 +79,4 @@ <h1>LABjs tests (LABjs with preloading #13b)</h1>
7979
</form>
8080

8181
</body>
82-
</html>
82+
</html>

tests/test-LABjs-preloading-13c.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@
3535
timeDiff.setStartTime();
3636

3737
</script>
38-
<script src="http://labjs.xhr.me/test_suite/testscript1.php?delay=1"></script>
38+
<script src="http://labjs.getify.com/test_suite/testscript1.php?delay=1"></script>
3939
<script src="testscript2.php?delay=1"></script>
4040
<script>
4141

4242
$LAB
4343
.setOptions({AlwaysPreserveOrder:true})
4444
.script(function(){
45-
if (typeof script1 == "undefined") return "http://labjs.xhr.me/test_suite/testscript1.php?delay=5";
45+
if (typeof script1 == "undefined") return "http://labjs.getify.com/test_suite/testscript1.php?delay=5";
4646
else return false;
4747
})
4848
.script(function(){
4949
if (typeof script2 == "undefined") return "testscript2.php?delay=3";
5050
else return false;
5151
})
5252
.script(function(){
53-
if (typeof script3 == "undefined") return {src:"http://labjs.xhr.me/test_suite/testscript3.php?delay=1"};
53+
if (typeof script3 == "undefined") return {src:"http://labjs.getify.com/test_suite/testscript3.php?delay=1"};
5454
else return false;
5555
})
5656
.wait(done);
@@ -80,4 +80,4 @@ <h1>LABjs tests (LABjs with preloading #13c)</h1>
8080
</form>
8181

8282
</body>
83-
</html>
83+
</html>

0 commit comments

Comments
 (0)