Files
openlayers/tests/Control/test_Button.html
2008-01-24 03:16:42 +00:00

18 lines
487 B
HTML

<html>
<head>
<script src="../../lib/OpenLayers.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>