01-basic.json 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "Basic test",
  3. "options": {},
  4. "html": "<!DOCTYPE html><html><title>The Title</title><body>Hello world</body></html>",
  5. "expected": [
  6. {
  7. "name": "!doctype",
  8. "data": "!DOCTYPE html",
  9. "type": "directive"
  10. },
  11. {
  12. "type": "tag",
  13. "name": "html",
  14. "attribs": {},
  15. "children": [
  16. {
  17. "type": "tag",
  18. "name": "title",
  19. "attribs": {},
  20. "children": [
  21. {
  22. "data": "The Title",
  23. "type": "text"
  24. }
  25. ]
  26. },
  27. {
  28. "type": "tag",
  29. "name": "body",
  30. "attribs": {},
  31. "children": [
  32. {
  33. "data": "Hello world",
  34. "type": "text"
  35. }
  36. ]
  37. }
  38. ]
  39. }
  40. ]
  41. }