Index: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/tests/Events/10-crazy-attrib.json |
diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/tests/Events/10-crazy-attrib.json b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/tests/Events/10-crazy-attrib.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..baf319f435919769f47a75d761bf81fddfc1d036 |
--- /dev/null |
+++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/htmlparser2/tests/Events/10-crazy-attrib.json |
@@ -0,0 +1,52 @@ |
+{ |
+ "name": "crazy attribute", |
+ "options": { |
+ "handler": {}, |
+ "parser": {} |
+ }, |
+ "html": "<p <='' FAIL>stuff</p>", |
+ "expected": [ |
+ { |
+ "event": "opentagname", |
+ "data": [ |
+ "p" |
+ ] |
+ }, |
+ { |
+ "event": "attribute", |
+ "data": [ |
+ "<", |
+ "" |
+ ] |
+ }, |
+ { |
+ "event": "attribute", |
+ "data": [ |
+ "fail", |
+ "" |
+ ] |
+ }, |
+ { |
+ "event": "opentag", |
+ "data": [ |
+ "p", |
+ { |
+ "<": "", |
+ "fail": "" |
+ } |
+ ] |
+ }, |
+ { |
+ "event": "text", |
+ "data": [ |
+ "stuff" |
+ ] |
+ }, |
+ { |
+ "event": "closetag", |
+ "data": [ |
+ "p" |
+ ] |
+ } |
+ ] |
+} |