<mvc:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.ui.commons" controllerName="sap.ui.core.mvctest.Test" xmlns:html="http://www.w3.org/1999/xhtml">
	<Button text="Press Me!" press="doIt"></Button>
	<html:br/>HTML Table with a SAPUI5 Button inside the last cell:
	<html:table id="localTableId" border="5">
		<html:tr><html:td>cell 1</html:td><html:td>cell 2</html:td><html:td>cell 3</html:td></html:tr>
		<html:tr><html:td>cell 4</html:td><html:td>cell 5</html:td><html:td><Button text="SAPUI5 button in cell 6" press="doIt"></Button></html:td></html:tr>
	</html:table>
	<html:br/>A simple Text fragment! Followed by a Panel:<html:br/>
	<Panel>
	  <Button text="Button in default aggregation"></Button>
		<html:div id="testDiv">HTML div in default aggregation<Button id="anotherid" text="Button in DIV (default aggregation)"></Button></html:div>
		<content>
			<Button id="button" text="Button in named aggregation"></Button>
			<html:div>HTML div in named aggregation<Button press="doIt" text="Button in DIV (named content)"></Button></html:div>
		</content>
	</Panel><html:br/>
</mvc:View>
