mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <style type="text/css">
 | |
|     #top {
 | |
|         margin-top: 500px;
 | |
|         padding-top: 100px;
 | |
|         background-color: navy;
 | |
|         width: 100%;
 | |
|         height: 50px;
 | |
|     }
 | |
|     .picture {
 | |
|         background: magenta !important;
 | |
|         position: relative;
 | |
|         height: 50px;
 | |
|         width: 100%;
 | |
|         margin-bottom: 1000px;
 | |
|     }
 | |
| </style>
 | |
| <a style="font-size: 50px" href="#top" id="link">Take test</a>
 | |
| <div id="top"></div>
 | |
| <div class="picture"></div>
 | |
| <script src="include.js"></script>
 | |
| <script>
 | |
|     asyncTest(done => {
 | |
|         let completed = false;
 | |
|         document.addEventListener("scroll", event => {
 | |
|             if (completed)
 | |
|                 return;
 | |
|             completed = true;
 | |
|             println("The page has been scrolled to y: " + window.scrollY);
 | |
|             done();
 | |
|         });
 | |
| 
 | |
|         document.getElementById("link").click();
 | |
|     });
 | |
| </script>
 | 
