1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "Basic test",
- "options": {},
- "html": "<!DOCTYPE html><html><title>The Title</title><body>Hello world</body></html>",
- "expected": [
- {
- "name": "!doctype",
- "data": "!DOCTYPE html",
- "type": "directive"
- },
- {
- "type": "tag",
- "name": "html",
- "attribs": {},
- "children": [
- {
- "type": "tag",
- "name": "title",
- "attribs": {},
- "children": [
- {
- "data": "The Title",
- "type": "text"
- }
- ]
- },
- {
- "type": "tag",
- "name": "body",
- "attribs": {},
- "children": [
- {
- "data": "Hello world",
- "type": "text"
- }
- ]
- }
- ]
- }
- ]
- }
|