Skip to content

Instantly share code, notes, and snippets.

@jtwalters
Last active August 29, 2015 14:14
Show Gist options
  • Save jtwalters/7e22590792eed967eca9 to your computer and use it in GitHub Desktop.
Save jtwalters/7e22590792eed967eca9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Form</title>
</head>
<body>
<form>
<label for="one">One</label>
<input id="one" name="one" type="text" value=""><br>
<label for="two">Two</label>
<input id="two" name="two" type="text" value="buggy"><br>
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chrome Jump Bug</title>
</head>
<body style="height: 400vh; background: #42a; color: white">
<iframe style="margin-top: 700px; height: 150px" src="form.html"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment