Test various markup for namespaced widgets

dojoType tests

Dojo Checkbox using <div dojoType="Checkbox">
------
Dojo Checkbox using <div dojoType="dojo:Checkbox">
------
MyNs checkbox using <div dojoType="myns:Check">
------
Dojo button added programatically without any namespace using dojo.widget.createWidget("Button")
------
Dojo button added programatically with dojo namespace specified dojo.widget.createWidget("dojo:Button")
------
Click me!
MyNs checkbox added programatically dojo.widget.createWidget("myns:Check")
------

XML namespaces

(To use the following with IE you MUST declare the xmlns in your html tag.)


Dojo Checkbox using namespaces <dojo:Checkbox>
------
Dojo checkbox with the default HTML domain <dojo:Checkbox dojoDomain="html">
------
MyButton Dojo Button using namespaces <dojo:Button>
------
MyNs checkbox using namespaces <myns:Check>
------
MyNs checkbox using dojoType <div dojoType="myns:Check">
------
Declaration using an exluded namespace (should cause no error). <foo:Check>
------