26-not-quite-closed.json 472 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "Not quite closed",
  3. "options": {},
  4. "html": "<foo /bar></foo bar>",
  5. "expected": [
  6. {
  7. "event": "opentagname",
  8. "data": [
  9. "foo"
  10. ]
  11. },
  12. {
  13. "event": "attribute",
  14. "data": [
  15. "bar",
  16. ""
  17. ]
  18. },
  19. {
  20. "event": "opentag",
  21. "data": [
  22. "foo",
  23. {
  24. "bar": ""
  25. }
  26. ]
  27. },
  28. {
  29. "event": "closetag",
  30. "data": [
  31. "foo"
  32. ]
  33. }
  34. ]
  35. }