git-svn-id: http://svn.openlayers.org/trunk/openlayers@11162 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
18 lines
478 B
HTML
18 lines
478 B
HTML
<html>
|
|
<head>
|
|
<script src="../OLLoader.js"></script>
|
|
<script type="text/javascript">
|
|
function test_Control_Button_constructor (t) {
|
|
t.plan( 2 );
|
|
|
|
control = new OpenLayers.Control.Button();
|
|
t.ok( control instanceof OpenLayers.Control.Button, "new OpenLayers.Control returns object" );
|
|
t.eq( control.displayClass, "olControlButton", "displayClass is correct" );
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|