promisefeni / reallysimplehistory

Automatically exported from code.google.com/p/reallysimplehistory
Other
0 stars 0 forks source link

firefox 3 hangs if we try to add a large html page to history #80

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. try to add very large html page
2.
3.

What is the expected output? What do you see instead?
firefox hangs

What version of the product are you using? On what operating system?
0.6 full

Please provide any additional information below.

Original issue reported on code.google.com by kedar.mo...@gmail.com on 9 Feb 2009 at 6:22

GoogleCodeExporter commented 8 years ago

I got this also. 
It could be fixed by replacing textarea by input element.

method window.historyStorage.setup:
replace string
{code}
+ '<textarea id="' + textareaID + '" style="' + textareaStyles + '" 
></textarea>'
{/code}
by string
{code}
+ '<input type="text" id="' + textareaID + '" style="' + textareaStyles + '" />'
{/code}

Original comment by denis.dr...@gmail.com on 12 Mar 2009 at 1:09

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Thanks Dennis. Had this same problem with all versions of Firefox. using 
<input/> 
instead fixed it.

Original comment by colm.deb...@gmail.com on 11 Mar 2010 at 2:49