| <title>Cobalt preload state visibility test</title> |
| <script src='black_box_js_test_utils.js'></script> |
| // In preload mode, visibility should be "prerender" and window/document |
| // should not have focus. |
| assertEqual("prerender", document.visibilityState); |
| assertFalse(document.hasFocus()); |
| // Wait for visibility change to verify visibilityState and having focus. |
| function handleVisibilityChange() { |
| assertEqual("visible", document.visibilityState); |
| assertTrue(document.hasFocus()); |
| // Ensure that the document URL still has the launch=preload parameter after becoming visible. |
| assertTrue(document.URL.includes('?foo=bar&launch=preload') || document.URL.includes('?launch=preload')); |
| document.removeEventListener("visibilitychange", handleVisibilityChange); |
| document.addEventListener("visibilitychange", handleVisibilityChange); |
| console.log('document.URL == ' + document.URL); |
| // Ensure that the document URL has the launch=preload parameter when preloading. |
| assertTrue(document.URL.includes('?foo=bar&launch=preload') || document.URL.includes('?launch=preload')); |