wip(ssr): vdom serialization

This commit is contained in:
Evan You
2020-01-28 18:48:27 -05:00
parent 8857b4f288
commit 6f43c4b516
11 changed files with 286 additions and 48 deletions

View File

@@ -1,29 +1,19 @@
describe('ssr: render props', () => {
test('class', () => {})
test('styles', () => {
test('style', () => {
// only render numbers for properties that allow no unit numbers
})
describe('attrs', () => {
test('basic', () => {})
test('normal attrs', () => {})
test('boolean attrs', () => {})
test('boolean attrs', () => {})
test('enumerated attrs', () => {})
test('enumerated attrs', () => {})
test('skip falsy values', () => {})
})
test('ignore falsy values', () => {})
describe('domProps', () => {
test('innerHTML', () => {})
test('props to attrs', () => {})
test('textContent', () => {})
test('textarea', () => {})
test('other renderable domProps', () => {
// also test camel to kebab case conversion for some props
})
})
test('ignore non-renderable props', () => {})
})