onmouseup
event handlers have an associated onkeyup
event handler.
onmouseup
event handler missing onkeyup
event handler.
onmouseup
attribute must also contain an onkeyup
attribute.
onkeyup
handler to your script
that performs the same function as the onmouseup
handler.
onmouseup
attribute.onmouseup
attribute then check if it also contains a valid onkeyup
attribute.onmouseup
event handlers have an associated onkeyup
event handler.onkeyup
attribute to the element.onmouseup
attribute and an onkeyup
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #108 - Negative</title> </head> <body> <INPUT name="num" onmouseup="foo" onkeyup="bar" value="0"> </body> </html>
onmouseup
attribute without an onkeyup
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #108 - Positive</title> </head> <body> <INPUT name="num" onmouseup="foo" value="0"> </body> </html>