id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,state
3042,Setting contentDisplayClass on a FramedCloud popup has no effect,slinkp,,"I'm using SVN r10972 .

Test case (assuming you already have a map and a feature):

{{{
        var map = ...;
        var feature = ...;
        var popup = new OpenLayers.Popup.FramedCloud(
            null, feature.geometry.getBounds().getCenterLonLat(), null, 'test content',
            {size: new OpenLayers.Size(1, 1), offset: new OpenLayers.Pixel(0, 0)},
            false, // closeBox.
            null
         );
        popup.contentDisplayClass = 'overridePopupContent'; // has no effect!
        feature.popup = popup;
        map.addPopup(popup);
}}}

The rendered popup still has a div with class=""olFramedCloudPopupContent"" instead of ""overridePopupContent"".

Have not tested whether this affects other Popup classes.
",bug,new,minor,2.13 Release,Popup.FramedCloud,SVN,,,,
