file_bfcache_page1.html (421B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script type="application/javascript"> 6 addEventListener('pageshow', function onshow(evt) { 7 var u = new SpeechSynthesisUtterance('hello'); 8 u.lang = 'it-IT-noend'; 9 u.addEventListener('start', function() { 10 location = "file_bfcache_page2.html"; 11 }); 12 speechSynthesis.speak(u); 13 }); 14 </script> 15 </head> 16 <body> 17 </body> 18 </html>