578// These are in the spec but not in the web platform tests.
579TEST_F(URLParserTest, AdditionalTests)
580{
581 checkURL("about:\a\aabc", {"about", "", "", "", 0, "%07%07abc", "", "", "about:%07%07abc"});
582 checkURL("notspecial:\t\t\n\t", {"notspecial", "", "", "", 0, "", "", "", "notspecial:"});
583 checkURLDifferences("notspecial\t\t\n\t:\t\t\n\t/\t\t\n\t/\t\t\n\thost",
584 {"notspecial", "", "", "host", 0, "/", "", "", "notspecial://host/"},
585 {"notspecial", "", "", "host", 0, "", "", "", "notspecial://host"});
586}
587