mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			345 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| loadPage("file:///res/html/misc/welcome.html")
 | |
| 
 | |
| afterInitialPageLoad(() => {
 | |
|    test("contentEditable attribute", () => {
 | |
|         expect(document.body.contentEditable).toBe("inherit");
 | |
|         expect(document.firstChild.nextSibling.nodeName).toBe("html");
 | |
|         expect(document.firstChild.nextSibling.contentEditable).toBe("true");
 | |
|    });
 | |
| });
 | 
