blob: 3197e84655a68873f693ba5223fb4c0e48bba1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<html>
<head>
<script src="../OLLoader.js"></script>
<script type="text/javascript">
var popup;
function test_Popup_Anchored_default_constructor(t) {
t.plan( 4 );
popup = new OpenLayers.Popup.Anchored();
t.ok( popup instanceof OpenLayers.Popup.Anchored, "new OpenLayers.Popup.Anchored returns Popup.Anchored object" );
t.ok(OpenLayers.String.startsWith(popup.id, "OpenLayers_Popup_Anchored"), "valid default popupid");
var firstID = popup.id;
t.eq(popup.contentHTML, null, "good default popup.contentHTML");
popup = new OpenLayers.Popup.Anchored();
var newID = popup.id;
t.ok(newID != firstID, "default id generator creating unique ids");
}
function test_Popup_Anchored_updateRelPos(t) {
t.plan(1);
var popup = new OpenLayers.Popup.Anchored();
popup.calculateNewPx = function () {}
popup.calculateRelativePosition = function() {
t.ok(true, "update relative position is called on moveTo");
}
popup.moveTo(new OpenLayers.Pixel(0,0));
}
</script>
</head>
<body>
</body>
</html>
|