aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/color/tests/Generator.js
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-13 09:49:11 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-13 09:49:11 +0000
commite44a7e37b6c7b5961adaffc62b9042b8d442938e (patch)
tree95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/color/tests/Generator.js
parenta62b9742ee5e28bcec6872d88f50f25b820914f6 (diff)
downloadsemanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz
semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/color/tests/Generator.js')
-rw-r--r--includes/js/dojox/color/tests/Generator.js128
1 files changed, 128 insertions, 0 deletions
diff --git a/includes/js/dojox/color/tests/Generator.js b/includes/js/dojox/color/tests/Generator.js
new file mode 100644
index 0000000..6232cc7
--- /dev/null
+++ b/includes/js/dojox/color/tests/Generator.js
@@ -0,0 +1,128 @@
+if(!dojo._hasResource["dojox.color.tests.Generator"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.color.tests.Generator"] = true;
+dojo.provide("dojox.color.tests.Generator");
+dojo.require("dojox.color.Generator");
+
+tests.register("dojox.color.tests.Generator", [
+ function testAnalogous(t){
+ // test the defaults
+ var args={ base: new dojox.color.Color({ r:128, g:0, b:0 }) };
+ var a=dojox.color.Generator.analogous(args);
+ var s='<h3>dojox.color.Generator.analogous</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=5, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testMonochromatic(t){
+ // test the defaults
+ var a=dojox.color.Generator.monochromatic({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<h3>dojox.color.Generator.monochromatic</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=8, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testTriadic(t){
+ // test the defaults
+ var a=dojox.color.Generator.triadic({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<h3>dojox.color.Generator.triadic</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=3, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testComplementary(t){
+ // test the defaults
+ var a=dojox.color.Generator.complementary({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<h3>dojox.color.Generator.complementary</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=2, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testSplitComplementary(t){
+ // test the defaults
+ var a=dojox.color.Generator.splitComplementary({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<h3>dojox.color.Generator.splitComplementary</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=3, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testCompound(t){
+ // test the defaults
+ var a=dojox.color.Generator.compound({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<h3>dojox.color.Generator.compound</h3><table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=4, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ },
+
+ function testShades(t){
+ // test the defaults
+ var a=dojox.color.Generator.shades({ base:new dojox.color.Color({r:128, g:0, b:0}) });
+ var s='<table cellpadding="0" cellspacing="1" border="0"><tr>';
+ var cols=8, c=0;
+ dojo.forEach(a, function(item){
+ if(c++%cols==0){ s+="</tr><tr>"; }
+ s+='<td width="32" bgcolor="'+item.toHex()+'">&nbsp;</td>';
+ });
+ if(c<cols){
+ for(; c<cols; c++){
+ s+='<td width="32">&nbsp;</td>';
+ }
+ }
+ t.debug(s+'</tr></table>');
+ }
+]);
+
+}