mirror of https://github.com/sveltejs/svelte
[fix] only use optimized 'src' handling for 'html' namespace (#6580)
parent
eee5e459d3
commit
fc4797c6f8
@ -0,0 +1,5 @@
|
||||
export default {
|
||||
options: {
|
||||
hydratable: true
|
||||
}
|
||||
};
|
@ -0,0 +1,70 @@
|
||||
/* generated by Svelte vX.Y.Z */
|
||||
import {
|
||||
SvelteComponent,
|
||||
append_hydration,
|
||||
attr,
|
||||
children,
|
||||
claim_element,
|
||||
detach,
|
||||
init,
|
||||
insert_hydration,
|
||||
noop,
|
||||
safe_not_equal
|
||||
} from "svelte/internal";
|
||||
|
||||
function create_fragment(ctx) {
|
||||
let svg;
|
||||
let img;
|
||||
|
||||
return {
|
||||
c() {
|
||||
svg = document.createElementNS("https://svelte.dev/docs#svelte_options", "svg");
|
||||
img = document.createElementNS("https://svelte.dev/docs#svelte_options", "img");
|
||||
this.h();
|
||||
},
|
||||
l(nodes) {
|
||||
svg = claim_element(nodes, "svg", {});
|
||||
var svg_nodes = children(svg);
|
||||
img = claim_element(svg_nodes, "img", { alt: true, src: true });
|
||||
svg_nodes.forEach(detach);
|
||||
this.h();
|
||||
},
|
||||
h() {
|
||||
attr(img, "alt", "potato");
|
||||
attr(img, "src", /*url*/ ctx[0]);
|
||||
},
|
||||
m(target, anchor) {
|
||||
insert_hydration(target, svg, anchor);
|
||||
append_hydration(svg, img);
|
||||
},
|
||||
p(ctx, [dirty]) {
|
||||
if (dirty & /*url*/ 1) {
|
||||
attr(img, "src", /*url*/ ctx[0]);
|
||||
}
|
||||
},
|
||||
i: noop,
|
||||
o: noop,
|
||||
d(detaching) {
|
||||
if (detaching) detach(svg);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function instance($$self, $$props, $$invalidate) {
|
||||
let { url } = $$props;
|
||||
|
||||
$$self.$$set = $$props => {
|
||||
if ('url' in $$props) $$invalidate(0, url = $$props.url);
|
||||
};
|
||||
|
||||
return [url];
|
||||
}
|
||||
|
||||
class Component extends SvelteComponent {
|
||||
constructor(options) {
|
||||
super();
|
||||
init(this, options, instance, create_fragment, safe_not_equal, { url: 0 });
|
||||
}
|
||||
}
|
||||
|
||||
export default Component;
|
@ -0,0 +1,9 @@
|
||||
<svelte:options namespace="foreign" />
|
||||
|
||||
<script>
|
||||
export let url;
|
||||
</script>
|
||||
|
||||
<svg>
|
||||
<img alt="potato" src={url}>
|
||||
</svg>
|
@ -0,0 +1,5 @@
|
||||
export default {
|
||||
options: {
|
||||
hydratable: true
|
||||
}
|
||||
};
|
@ -0,0 +1,71 @@
|
||||
/* generated by Svelte vX.Y.Z */
|
||||
import {
|
||||
SvelteComponent,
|
||||
append_hydration,
|
||||
attr,
|
||||
children,
|
||||
claim_element,
|
||||
detach,
|
||||
init,
|
||||
insert_hydration,
|
||||
noop,
|
||||
safe_not_equal,
|
||||
svg_element
|
||||
} from "svelte/internal";
|
||||
|
||||
function create_fragment(ctx) {
|
||||
let svg;
|
||||
let img;
|
||||
|
||||
return {
|
||||
c() {
|
||||
svg = svg_element("svg");
|
||||
img = svg_element("img");
|
||||
this.h();
|
||||
},
|
||||
l(nodes) {
|
||||
svg = claim_element(nodes, "svg", {}, 1);
|
||||
var svg_nodes = children(svg);
|
||||
img = claim_element(svg_nodes, "img", { alt: true, src: true }, 1);
|
||||
svg_nodes.forEach(detach);
|
||||
this.h();
|
||||
},
|
||||
h() {
|
||||
attr(img, "alt", "potato");
|
||||
attr(img, "src", /*url*/ ctx[0]);
|
||||
},
|
||||
m(target, anchor) {
|
||||
insert_hydration(target, svg, anchor);
|
||||
append_hydration(svg, img);
|
||||
},
|
||||
p(ctx, [dirty]) {
|
||||
if (dirty & /*url*/ 1) {
|
||||
attr(img, "src", /*url*/ ctx[0]);
|
||||
}
|
||||
},
|
||||
i: noop,
|
||||
o: noop,
|
||||
d(detaching) {
|
||||
if (detaching) detach(svg);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function instance($$self, $$props, $$invalidate) {
|
||||
let { url } = $$props;
|
||||
|
||||
$$self.$$set = $$props => {
|
||||
if ('url' in $$props) $$invalidate(0, url = $$props.url);
|
||||
};
|
||||
|
||||
return [url];
|
||||
}
|
||||
|
||||
class Component extends SvelteComponent {
|
||||
constructor(options) {
|
||||
super();
|
||||
init(this, options, instance, create_fragment, safe_not_equal, { url: 0 });
|
||||
}
|
||||
}
|
||||
|
||||
export default Component;
|
@ -0,0 +1,7 @@
|
||||
<script>
|
||||
export let url;
|
||||
</script>
|
||||
|
||||
<svg>
|
||||
<img alt="potato" src={url}>
|
||||
</svg>
|
Loading…
Reference in new issue