You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
323 B

4 years ago
  1. {
  2. "name": "Script source in comment",
  3. "options": {},
  4. "html": "<script><!--var foo = 1;--></script>",
  5. "expected": [
  6. {
  7. "type": "script",
  8. "name": "script",
  9. "attribs": {},
  10. "children": [
  11. {
  12. "data": "<!--var foo = 1;-->",
  13. "type": "text"
  14. }
  15. ]
  16. }
  17. ]
  18. }