Index: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/08-extra_spaces_in_tag.json |
diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/08-extra_spaces_in_tag.json b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/08-extra_spaces_in_tag.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..78b30f44f2c679e63fc78f9c742e68f7d3c52b0f |
--- /dev/null |
+++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/tests/08-extra_spaces_in_tag.json |
@@ -0,0 +1,23 @@ |
+{ |
+ "name": "Extra spaces in tag", |
+ "options": { |
+ "handler": {}, |
+ "parser": {} |
+ }, |
+ "html": "<\n font\t\n size='14' \n>the text<\n /\t\nfont\t \n>", |
+ "expected": [ |
+ { |
+ "type": "tag", |
+ "name": "font", |
+ "attribs": { |
+ "size": "14" |
+ }, |
+ "children": [ |
+ { |
+ "data": "the text", |
+ "type": "text" |
+ } |
+ ] |
+ } |
+ ] |
+} |