other_window.html (423B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 4 <h1>This is some text</h1> 5 6 <script> 7 function navigate() { 8 history.pushState({}, "", "/different-url"); 9 } 10 11 async function getNextSoftNavEntry() { 12 return new Promise(resolve => { 13 new PerformanceObserver((list, observer) => { 14 observer.disconnect(); 15 resolve(list.getEntries()[0]); 16 }).observe({ type: "soft-navigation" }); 17 }); 18 } 19 </script>