mirror of https://github.com/sveltejs/svelte
fix: correctly infer `<a>` tag namespace (#14134)
`<a>` tags are valid in both the SVG and HTML namespace. If there's no parent, we therefore have to look downwards to see if it's the parent of a SVG or HTML element. fixes #7807 fixes #13793pull/13429/merge
parent
8de5605b6a
commit
551284ca22
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: correctly infer `<a>` tag namespace
|
@ -0,0 +1,26 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
html: `
|
||||||
|
<div><a><span>Hello</span></a></div>
|
||||||
|
<div><a><span>Hello</span></a></div>
|
||||||
|
<div><a><span>Hello</span></a></div>
|
||||||
|
`,
|
||||||
|
test({ assert, target }) {
|
||||||
|
const div = target.querySelectorAll('div');
|
||||||
|
const a = target.querySelectorAll('a');
|
||||||
|
const span = target.querySelectorAll('span');
|
||||||
|
|
||||||
|
for (const element of div) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/1999/xhtml');
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const element of a) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/1999/xhtml');
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const element of span) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/1999/xhtml');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
let { children } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{@render children()}
|
||||||
|
</div>
|
@ -0,0 +1,24 @@
|
|||||||
|
<script>
|
||||||
|
import Div from './div.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a>
|
||||||
|
<span>Hello</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{#snippet test()}
|
||||||
|
<a>
|
||||||
|
<span>Hello</span>
|
||||||
|
</a>
|
||||||
|
{/snippet}
|
||||||
|
{@render test()}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Div>
|
||||||
|
<a>
|
||||||
|
<span>Hello</span>
|
||||||
|
</a>
|
||||||
|
</Div>
|
@ -0,0 +1,26 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
html: `
|
||||||
|
<svg><a><text>Hello</text></a></svg>
|
||||||
|
<svg><a><text>Hello</text></a></svg>
|
||||||
|
<svg><a><text>Hello</text></a></svg>
|
||||||
|
`,
|
||||||
|
test({ assert, target }) {
|
||||||
|
const svg = target.querySelectorAll('svg');
|
||||||
|
const a = target.querySelectorAll('a');
|
||||||
|
const text = target.querySelectorAll('text');
|
||||||
|
|
||||||
|
for (const element of svg) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/2000/svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const element of a) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/2000/svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const element of text) {
|
||||||
|
assert.equal(element.namespaceURI, 'http://www.w3.org/2000/svg');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,24 @@
|
|||||||
|
<script>
|
||||||
|
import Svg from './svg.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svg>
|
||||||
|
<a>
|
||||||
|
<text>Hello</text>
|
||||||
|
</a>
|
||||||
|
</svg>
|
||||||
|
|
||||||
|
<svg>
|
||||||
|
{#snippet test()}
|
||||||
|
<a>
|
||||||
|
<text>Hello</text>
|
||||||
|
</a>
|
||||||
|
{/snippet}
|
||||||
|
{@render test()}
|
||||||
|
</svg>
|
||||||
|
|
||||||
|
<Svg>
|
||||||
|
<a>
|
||||||
|
<text>Hello</text>
|
||||||
|
</a>
|
||||||
|
</Svg>
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
let { children } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svg>
|
||||||
|
{@render children()}
|
||||||
|
</svg>
|
Loading…
Reference in new issue