1<html> 2<head> 3<title>Form with a textarea that goes back on submit</title> 4</head> 5<body> 6<form id="form" method="get" action="data:text/html,<body onload='history.back()'></body>"> 7 <p> 8 <textarea name="text" rows="3" cols="10" id="textarea">123</textarea><br /> 9 <br /> 10 <input type="submit" /> 11 <input type="reset" /> 12 </p> 13</form> 14 15</body> 16</html> 17