I google that there are many issues about IE animation, however no one can answer my question positively. Like Animated GIF while loading page does not animate , ie animated gif freeze til page loads and so on.
I do the following tests :
- Open a running gif with Chrome and IE11, say http://127.0.0.1/loading.gif. You should see both gifs works well.
Open IE devtools and Chrome devtools, paste the following code
for(var i=0; i <= 2000000000; i++){if(i==2000000000) console.log("Script finished")}
See the result again. Now the gif opening with chrome can still running, but the gif openning with IE11 is freeze until the background script finished.
Why gif not running on IE11 with background script ? Is it possible to resolve or workaround it ?