My users have been experiencing freezing issues on their iPads when running my website in standalone mode.
The devices they are using are running iOS 9.2.1.
The device responsiveness appears to gradually get slower and after an hour of use it may even freeze.
Clicking the home button and reopening the webpage in standalone mode will fix/reset the issue.
The webpages my users are viewing in standalone mode contain a handful of inputs (text, radio, checkbox) and a submit button. So the browser is being reloaded several times before freezing.
The page's resources are fairly small, some of the pages may contain an image or two and a font file is imported in the css for icon use.
Does anyone know what could be causing the freezing?
I am under the assumption that it is related to the memory.
Am I able to track the memory usage of an iOS device in standalone mode?
The web inspector tools for Safari are limited compared to Chrome and Safari does not support window.performance.memory
.
I have also tried remote debugging using the 'Instruments' app but nothing was recorded in the 'Leaks' tool and I received the error 'Unable to attach to task; port invalid.' when trying to use the Allocation tool.
Is there a different tool I should be using?