mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:22:45 +00:00 
			
		
		
		
	 71e8ddcd1c
			
		
	
	
		71e8ddcd1c
		
	
	
	
	
		
			
			This patch adds basic support for external stylesheets. It currently only works with file:// URLs. We do a synchronous full relayout after loading a stylesheet, which is definitely on the aggressive side, but it gives us something to work on improving. :^)
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| <head>
 | |
| <title>Link element test</title>
 | |
| <link rel="stylesheet" href="link.css">
 | |
| </head>
 | |
| <body>
 | |
| <div id="foo">I should be styled!</div>
 | |
| </body>
 | |
| </html>
 |