Skip to content

Commit

Permalink
add longer timeout to iframe test
Browse files Browse the repository at this point in the history
  • Loading branch information
cabanier committed Nov 30, 2022
1 parent 4ae25ed commit 3e3cc6d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions text_focus_timer_long.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<html>
<body>

<input
type="text"
id="myText"
name="myText"
value="test text yay"
onfocus="console.log('myText onfocus called: ' + this.value);"
onblur="console.log('myText onblur called: ' + this.value);"
onchange = "console.log('myText onchange called: ' + this.value);"
onkeypress = "console.log('myText onkeypress called: ' + this.value');"
onpaste = "console.log('myText onpaste called: ' + this.value);"
oninput = "console.log('myText oninput called: ' + this.value);">

<script>
function myTextFocus() {
document.getElementById("myText").focus();
}
window.setTimeout(myTextFocus, 5*60*1000);
</script>

</body>
</html>

0 comments on commit 3e3cc6d

Please sign in to comment.