mirror of https://github.com/sveltejs/svelte
				
				
				
			valid XHTML syntax in innerHTML for static elements (#5317)
	
		
	
				
					
				
			
							parent
							
								
									51e2626f42
								
							
						
					
					
						commit
						8a28d1bb38
					
				| @ -0,0 +1,39 @@ | |||||||
|  | /* generated by Svelte vX.Y.Z */ | ||||||
|  | import { | ||||||
|  | 	SvelteComponent, | ||||||
|  | 	detach, | ||||||
|  | 	element, | ||||||
|  | 	init, | ||||||
|  | 	insert, | ||||||
|  | 	noop, | ||||||
|  | 	safe_not_equal | ||||||
|  | } from "svelte/internal"; | ||||||
|  | 
 | ||||||
|  | function create_fragment(ctx) { | ||||||
|  | 	let div; | ||||||
|  | 
 | ||||||
|  | 	return { | ||||||
|  | 		c() { | ||||||
|  | 			div = element("div"); | ||||||
|  | 			div.innerHTML = `<img alt="Star" width="100" height="100" src="http://mdn.mozillademos.org/files/12676/star.svg"/>`; | ||||||
|  | 		}, | ||||||
|  | 		m(target, anchor) { | ||||||
|  | 			insert(target, div, anchor); | ||||||
|  | 		}, | ||||||
|  | 		p: noop, | ||||||
|  | 		i: noop, | ||||||
|  | 		o: noop, | ||||||
|  | 		d(detaching) { | ||||||
|  | 			if (detaching) detach(div); | ||||||
|  | 		} | ||||||
|  | 	}; | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | class Component extends SvelteComponent { | ||||||
|  | 	constructor(options) { | ||||||
|  | 		super(); | ||||||
|  | 		init(this, options, null, create_fragment, safe_not_equal, {}); | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | export default Component; | ||||||
| @ -0,0 +1,3 @@ | |||||||
|  | <div> | ||||||
|  |     <img alt="Star" width="100" height="100" src="http://mdn.mozillademos.org/files/12676/star.svg" /> | ||||||
|  | </div> | ||||||
					Loading…
					
					
				
		Reference in new issue