Using the latest revision (from today), I couldn't reproduce the first two issues: There was no popup from Google Maps and the demo worked normally; No errors occurred or were logged when changing theme.
The third issue is a more general issue that also happens in the 4.x trunk. Two hidden input elements that are automatically added to forms (javax.faces.ViewState and javax.faces.ClientWindow) are being rendered with a closing tag, whereas they should be rendered as singleton tags.
<input type="hidden" name="javax.faces.ViewState" id="j_id1:javax.faces.ViewState:1" value="5239631506982053703:5833428545550954248" autocomplete="off"></input>
<input type="hidden" name="javax.faces.ClientWindow" id="j_id1:javax.faces.ClientWindow:1" value="5ji8kjxbut" autocomplete="off"></input>
Other hidden input elements that are also added automatically by the framework like 'ice.view' and 'ice.window' are rendered correctly, without the closing tag. Input elements rendered by components are also rendered correctly, as singleton tags.
IE11 is complaining about this fact, while other browsers don't seem to care. Functionality is not affected by this, however. These warnings are only logged when refreshing the page (either manually or automatically).
Using the latest revision (from today), I couldn't reproduce the first two issues: There was no popup from Google Maps and the demo worked normally; No errors occurred or were logged when changing theme.
The third issue is a more general issue that also happens in the 4.x trunk. Two hidden input elements that are automatically added to forms (javax.faces.ViewState and javax.faces.ClientWindow) are being rendered with a closing tag, whereas they should be rendered as singleton tags.
Other hidden input elements that are also added automatically by the framework like 'ice.view' and 'ice.window' are rendered correctly, without the closing tag. Input elements rendered by components are also rendered correctly, as singleton tags.
IE11 is complaining about this fact, while other browsers don't seem to care. Functionality is not affected by this, however. These warnings are only logged when refreshing the page (either manually or automatically).