Index: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/13-comment_in_text.json |
diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/13-comment_in_text.json b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/13-comment_in_text.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bc47305b1a18bad679ad7928ea566845650872cc |
--- /dev/null |
+++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/13-comment_in_text.json |
@@ -0,0 +1,22 @@ |
+{ |
+ "name": "Comment within text", |
+ "options": { |
+ "handler": {}, |
+ "parser": {} |
+ }, |
+ "html": "this is <!-- the comment --> the text", |
+ "expected": [ |
+ { |
+ "data": "this is ", |
+ "type": "text" |
+ }, |
+ { |
+ "data": " the comment ", |
+ "type": "comment" |
+ }, |
+ { |
+ "data": " the text", |
+ "type": "text" |
+ } |
+ ] |
+} |