Kick tinderboxen to see if the current orange is random or not

This commit is contained in:
Jeff Walden 2009-03-09 22:47:13 -07:00
parent 2565c872a4
commit b0184f38f5

View File

@ -1239,12 +1239,12 @@ function testContinueWithLabel() {
var i = 0;
var j = 20;
checkiandj :
while (i<10) {
i+=1;
while (i < 10) {
i += 1;
checkj :
while (j>10) {
j-=1;
if ((j%2)==0)
while (j > 10) {
j -= 1;
if ((j % 2) == 0)
continue checkj;
}
}