{"tests": [ {"description": "no encoding", "options": {"inject_meta_charset": true}, "input": [["EmptyTag", "head", {}]], "expected": [""] }, {"description": "empytag head", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["EmptyTag", "head", {}]], "expected": [""], "xhtml": [""] }, {"description": "head w/title", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["StartTag","title",{}], ["Characters", "foo"],["EndTag", "title"], ["EndTag", "head"]], "expected": ["foo"], "xhtml": ["foo"] }, {"description": "head w/meta-charset", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"charset":"ascii"}], ["EndTag", "head"]], "expected": [""], "xhtml": [""] }, {"description": "head w/ two meta-charset", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"charset":"ascii"}], ["EmptyTag","meta",{"charset":"ascii"}], ["EndTag", "head"]], "expected": ["", ""], "xhtml": ["", ""] }, {"description": "head w/robots", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"name":"robots","content":"noindex"}], ["EndTag", "head"]], "expected": [""], "xhtml": [""] }, {"description": "head w/robots & charset", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"name":"robots","content":"noindex"}], ["EmptyTag","meta",{"charset":"ascii"}], ["EndTag", "head"]], "expected": [""], "xhtml": [""] }, {"description": "head w/ charset in http-equiv content-type", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"http-equiv":"content-type", "content":"text/html; charset=ascii"}], ["EndTag", "head"]], "expected": [""], "xhtml": [""] }, {"description": "head w/robots & charset in http-equiv content-type", "options": {"inject_meta_charset": true, "encoding":"utf-8"}, "input": [["StartTag", "head", {}], ["EmptyTag","meta",{"name":"robots","content":"noindex"}], ["EmptyTag","meta",{"http-equiv":"content-type", "content":"text/html; charset=ascii"}], ["EndTag", "head"]], "expected": [""], "xhtml": [""] } ]}