mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
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>
|