Mochkit JavaScript DHTML





    
    
    
    
    
    



    
    



    var approx = function (a, b, msg) {
        return alert(msg+":"+(a.toPrecision(4) == b.toPrecision(4)));
    };
    var hsl = Color.redColor().asHSL();
    approx( hsl.h, 0.0, "red hsl.h" );
    approx( hsl.s, 1.0, "red hsl.s" );
    approx( hsl.l, 0.5, "red hsl.l" );
    hsl = Color.fromRGB(0, 0, 0.5).asHSL();
    approx( hsl.h, 2/3, "darkblue hsl.h" );
    approx( hsl.s, 1.0, "darkblue hsl.s" );
    approx( hsl.l, 0.25, "darkblue hsl.l" );
    hsl = Color.fromString("#4169E1").asHSL();
    approx( hsl.h, (5/8), "4169e1 h");
    approx( hsl.s, (8/11), "4169e1 s");
    approx( hsl.l, (29/51), "4169e1 l");
    hsl = Color.fromString("#555544").asHSL();
    approx( hsl.h, (1/6), "555544 h" );
    approx( hsl.s, (1/9), "555544 s" );
    approx( hsl.l, (3/10), "555544 l" );
    hsl = Color.fromRGB(0.5, 1, 0.5).asHSL();
    approx( hsl.h, 1/3, "aqua hsl.h" );
    approx( hsl.s, 1.0, "aqua hsl.s" );
    approx( hsl.l, 0.75, "aqua hsl.l" );