Skip to content

Commit 16eed23

Browse files
committed
feat(compiler-core/vapor): reuse html nesting from compiler-dom
related #293
1 parent f0361ba commit 16eed23

File tree

4 files changed

+14
-198
lines changed

4 files changed

+14
-198
lines changed

packages/compiler-dom/src/htmlNesting.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,18 @@ const onlyValidChildren: Record<string, Set<string>> = {
5858
'template',
5959
]),
6060
optgroup: new Set(['option']),
61+
/**
62+
* Though validate-html-nesting declared hr is not a valid child of select
63+
* Keep hr as valid select children, Referring https://html.spec.whatwg.org/multipage/grouping-content.html#the-hr-element
64+
*/
6165
select: new Set(['optgroup', 'option', 'hr']),
66+
/**
67+
* Though validate-html-nesting declared math should only have mrow as it's children
68+
* Referring mathml-core spec, it's not fact
69+
* https://w3c.github.io/mathml-core/#dfn-mrow
70+
*/
71+
// math: new Set(['mrow']),
72+
script: new Set(),
6273
// table
6374
table: new Set(['caption', 'colgroup', 'tbody', 'tfoot', 'thead']),
6475
tr: new Set(['td', 'th']),
@@ -67,7 +78,6 @@ const onlyValidChildren: Record<string, Set<string>> = {
6778
thead: new Set(['tr']),
6879
tfoot: new Set(['tr']),
6980
// these elements can not have any children elements
70-
script: emptySet,
7181
iframe: emptySet,
7282
option: emptySet,
7383
textarea: emptySet,

packages/compiler-dom/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
noopDirectiveTransform,
1111
} from '@vue/compiler-core'
1212
import { parserOptions } from './parserOptions'
13+
import { isValidHTMLNesting } from './htmlNesting'
1314
import { transformStyle } from './transforms/transformStyle'
1415
import { transformVHtml } from './transforms/vHtml'
1516
import { transformVText } from './transforms/vText'
@@ -23,6 +24,7 @@ import { validateHtmlNesting } from './transforms/validateHtmlNesting'
2324
import { extend } from '@vue/shared'
2425

2526
export { parserOptions }
27+
export { isValidHTMLNesting }
2628

2729
export const DOMNodeTransforms: NodeTransform[] = [
2830
transformStyle,

packages/compiler-vapor/src/html-nesting.ts

-196
This file was deleted.

packages/compiler-vapor/src/transforms/transformElement.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { isValidHTMLNesting } from '../html-nesting'
21
import {
32
type AttributeNode,
43
type ComponentNode,
@@ -37,6 +36,7 @@ import {
3736
} from '../ir'
3837
import { EMPTY_EXPRESSION } from './utils'
3938
import { findProp } from '../utils'
39+
import { isValidHTMLNesting } from '@vue/compiler-dom'
4040

4141
export const isReservedProp: (key: string) => boolean = /*#__PURE__*/ makeMap(
4242
// the leading comma is intentional so empty string "" is also included

0 commit comments

Comments
 (0)