summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/Popup/FramedCloud.html
blob: 7da86e36ea8dc7dc144bf024d2a2e42c32383c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
  <script src="../OLLoader.js"></script>
  <script type="text/javascript">

   function test_Popup_FramedCloud_setHTML(t) { 
        t.plan(1);
        popup = new OpenLayers.Popup.FramedCloud();
        popup.setContentHTML("<p></p>");
        t.ok("setHTML on popup not yet added to map doesn't fail");
   }

  </script>
</head>
<body>
<div id="map" style="width:512px; height:256px"> </div>
</body>
</html>