Device-Bugs icon indicating copy to clipboard operation
Device-Bugs copied to clipboard

Safari 8 (ios 8.0) freeze browser when fill form with many text inputs

Open sopilkar opened this issue 10 years ago • 4 comments

Summary:

Freeze browser when fill form

Platforms:

  • browser Safari 8 (ios 8.0)

How to reproduce:

  1. Open web-page with form
  2. Tap (focus) text input field
  3. Fill any text
  4. Go to next text field via 'next'-button on the virtual keyboard
  5. Repeat these steps from 2 to 4 a few times
  6. The browser will freeze

or

Make it very fast:

  1. Focus text field
  2. Tap 'next'-button on the virtual keyboard
  3. Repeat these steps...

Reduced Example:

Workarounds:

sopilkar avatar Sep 24 '14 20:09 sopilkar

I've also had it crash in iOS8 when I enter "tm" and it auto-corrects to the trademark symbol in certian input types (email, etc.)

toddparker avatar Sep 24 '14 21:09 toddparker

Hi sopilkar did you manage to find a solution to this problem, every time I try to complete a form in Safari all input freezes on the third character. The only way I've found to get around it is to paste the entry. Thanks in advance

clarkja69 avatar Oct 10 '14 11:10 clarkja69

@clarkja69 Hi!

One dirty workaround (founded by disable prev/next buttons) is:

onfocusTextField: function () {
// set disabled all another fields
}
onblurTextField: function() {
// set enabled fields
}

sopilkar avatar Oct 10 '14 11:10 sopilkar

Hi many thanks, I'll give that a try when I get a few minutes. Cheers

clarkja69 avatar Oct 16 '14 03:10 clarkja69