Index: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/11-text_outside_tags.json |
diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/11-text_outside_tags.json b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/11-text_outside_tags.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f0fa162cc4bc96d9d3adbb8e8cf069096baf1e4b |
--- /dev/null |
+++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/11-text_outside_tags.json |
@@ -0,0 +1,23 @@ |
+{ |
+ "name": "Text outside tags", |
+ "options": { |
+ "handler": {}, |
+ "parser": {} |
+ }, |
+ "html": "Line one\n<br>\nline two", |
+ "expected": [ |
+ { |
+ "data": "Line one\n", |
+ "type": "text" |
+ }, |
+ { |
+ "type": "tag", |
+ "name": "br", |
+ "attribs": {} |
+ }, |
+ { |
+ "data": "\nline two", |
+ "type": "text" |
+ } |
+ ] |
+} |