Q13
Single choice
Given the following JSP:
...
<script>
function registerClientEventHandler(test)
{
onClick = "fireClientEvent";
}
function handleClick()
{
alert("handleClick");
}
function test()
{
alert("test");
}
function fireClientEvent()
{
alert("fireClientEvent");
}
function onclick()
{
alert("onClick");
}
</script>
...
<dmf:button name="test" onclick="test" label="Test" runatclient="true"/> ...
Which output is shown to the user when the button defined above is pressed?