summaryrefslogtreecommitdiffstats
path: root/WebContent/html-tests/ComponentFocus.html
blob: 0a822520e0a7a44ed9b26c6fb874cd57f5ff75a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>

<script type="text/javascript">

</script>

</head>
<body>
<button onfocus="console.log('button focus');" onblur="console.log('button blur');">Focus me</button>
<textarea onfocus="console.log('textarea focus');" onblur="console.log('textarea blur');">Focus me too</textarea>
</body>
</html>