*/
public void testInitialiseFocusEventAttributes() throws Exception {
final String ON_BLUR = "OnBlur";
final String ON_FOCUS = "OnFocus";
AnchorAttributes papiAttributes = new AnchorAttributes();
doTestInitialiseFocusEventAttribute(papiAttributes,
EventConstants.ON_BLUR,
null);
// Valid on change
papiAttributes.setOnBlur(ON_BLUR);
doTestInitialiseFocusEventAttribute(papiAttributes,
EventConstants.ON_BLUR,
ON_BLUR);
// Valid on select
papiAttributes.setOnFocus(ON_FOCUS);
doTestInitialiseFocusEventAttribute(papiAttributes,
EventConstants.ON_FOCUS,
ON_FOCUS);
// Other events should not have been set (choose one, say ON_CLICK).