Log Message
Re-land r205580 after r205649 fixed the test failures https://bugs.webkit.org/show_bug.cgi?id=161668
Re-landing changesets: "Punycode encode non-ascii hosts in URLParser" https://bugs.webkit.org/show_bug.cgi?id=161655 http://trac.webkit.org/changeset/205521 "Fix query-only and fragment-only relative URLs when using URLParser" https://bugs.webkit.org/show_bug.cgi?id=161657 http://trac.webkit.org/changeset/205526 "URLParser should parse / as a relative URL" https://bugs.webkit.org/show_bug.cgi?id=161667 http://trac.webkit.org/changeset/205532
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (205649 => 205650)
--- trunk/Source/WebCore/ChangeLog 2016-09-08 17:19:25 UTC (rev 205649)
+++ trunk/Source/WebCore/ChangeLog 2016-09-08 17:23:30 UTC (rev 205650)
@@ -1,5 +1,25 @@
2016-09-08 Alex Christensen <[email protected]>
+ Re-land r205580 after r205649 fixed the test failures
+ https://bugs.webkit.org/show_bug.cgi?id=161668
+
+ Re-landing changesets:
+
+ "Punycode encode non-ascii hosts in URLParser"
+ https://bugs.webkit.org/show_bug.cgi?id=161655
+ http://trac.webkit.org/changeset/205521
+
+ "Fix query-only and fragment-only relative URLs when using
+ URLParser"
+ https://bugs.webkit.org/show_bug.cgi?id=161657
+ http://trac.webkit.org/changeset/205526
+
+ "URLParser should parse / as a relative URL"
+ https://bugs.webkit.org/show_bug.cgi?id=161667
+ http://trac.webkit.org/changeset/205532
+
+2016-09-08 Alex Christensen <[email protected]>
+
Add range check in URLParser's serializeIPv6
https://bugs.webkit.org/show_bug.cgi?id=161743
Modified: trunk/Source/WebCore/platform/URLParser.cpp (205649 => 205650)
--- trunk/Source/WebCore/platform/URLParser.cpp 2016-09-08 17:19:25 UTC (rev 205649)
+++ trunk/Source/WebCore/platform/URLParser.cpp 2016-09-08 17:23:30 UTC (rev 205650)
@@ -28,6 +28,7 @@
#include "Logging.h"
#include <array>
+#include <unicode/uidna.h>
#include <wtf/HashMap.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/text/StringBuilder.h>
@@ -450,7 +451,8 @@
case State::SchemeEndCheckForSlashes:
LOG_STATE("SchemeEndCheckForSlashes");
if (*c == '/') {
- m_buffer.append('/');
+ m_buffer.append("//");
+ m_url.m_userStart = m_buffer.length();
state = State::PathOrAuthority;
++c;
} else {
@@ -515,11 +517,13 @@
break;
case '?':
copyURLPartsUntil(base, URLPart::PathEnd);
+ m_buffer.append('?');
state = State::Query;
++c;
break;
case '#':
copyURLPartsUntil(base, URLPart::QueryEnd);
+ m_buffer.append('#');
state = State::Fragment;
++c;
break;
@@ -841,6 +845,12 @@
break;
case State::RelativeSlash:
LOG_FINAL_STATE("RelativeSlash");
+ copyURLPartsUntil(base, URLPart::PortEnd);
+ m_buffer.append('/');
+ m_url.m_pathAfterLastSlash = base.m_portEnd + 1;
+ m_url.m_pathEnd = m_url.m_pathAfterLastSlash;
+ m_url.m_queryEnd = m_url.m_pathAfterLastSlash;
+ m_url.m_fragmentEnd = m_url.m_pathAfterLastSlash;
break;
case State::SpecialAuthoritySlashes:
LOG_FINAL_STATE("SpecialAuthoritySlashes");
@@ -1269,11 +1279,44 @@
return output.toStringPreserveCapacity();
}
+static bool containsOnlyASCII(const String& string)
+{
+ if (string.is8Bit())
+ return charactersAreAllASCII(string.characters8(), string.length());
+ return charactersAreAllASCII(string.characters16(), string.length());
+}
+
static Optional<String> domainToASCII(const String& domain)
{
- // FIXME: Implement correctly
- CString utf8 = domain.utf8();
- return String(utf8.data(), utf8.length());
+ const unsigned hostnameBufferLength = 2048;
+
+ if (containsOnlyASCII(domain)) {
+ if (domain.is8Bit())
+ return domain;
+ Vector<LChar, hostnameBufferLength> buffer;
+ size_t length = domain.length();
+ buffer.reserveInitialCapacity(length);
+ for (size_t i = 0; i < length; ++i)
+ buffer.append(domain[i]);
+ return String(buffer.data(), length);
+ }
+
+ UChar hostnameBuffer[hostnameBufferLength];
+ UErrorCode error = U_ZERO_ERROR;
+
+ int32_t numCharactersConverted = uidna_IDNToASCII(StringView(domain).upconvertedCharacters(), domain.length(), hostnameBuffer, hostnameBufferLength, UIDNA_ALLOW_UNASSIGNED, nullptr, &error);
+
+ if (error == U_ZERO_ERROR) {
+ LChar buffer[hostnameBufferLength];
+ for (int32_t i = 0; i < numCharactersConverted; ++i) {
+ ASSERT(isASCII(hostnameBuffer[i]));
+ buffer[i] = hostnameBuffer[i];
+ }
+ return String(buffer, numCharactersConverted);
+ }
+
+ // FIXME: Check for U_BUFFER_OVERFLOW_ERROR and retry with an allocated buffer.
+ return Nullopt;
}
static bool hasInvalidDomainCharacter(const String& asciiDomain)
Modified: trunk/Tools/ChangeLog (205649 => 205650)
--- trunk/Tools/ChangeLog 2016-09-08 17:19:25 UTC (rev 205649)
+++ trunk/Tools/ChangeLog 2016-09-08 17:23:30 UTC (rev 205650)
@@ -1,3 +1,23 @@
+2016-09-08 Alex Christensen <[email protected]>
+
+ Re-land r205580 after r205649 fixed the test failures
+ https://bugs.webkit.org/show_bug.cgi?id=161668
+
+ Re-landing changesets:
+
+ "Punycode encode non-ascii hosts in URLParser"
+ https://bugs.webkit.org/show_bug.cgi?id=161655
+ http://trac.webkit.org/changeset/205521
+
+ "Fix query-only and fragment-only relative URLs when using
+ URLParser"
+ https://bugs.webkit.org/show_bug.cgi?id=161657
+ http://trac.webkit.org/changeset/205526
+
+ "URLParser should parse / as a relative URL"
+ https://bugs.webkit.org/show_bug.cgi?id=161667
+ http://trac.webkit.org/changeset/205532
+
2016-09-08 Dean Jackson <[email protected]>
Expose Apple Pencil input to testing system
Modified: trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp (205649 => 205650)
--- trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp 2016-09-08 17:19:25 UTC (rev 205649)
+++ trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp 2016-09-08 17:23:30 UTC (rev 205650)
@@ -84,6 +84,16 @@
EXPECT_TRUE(URLParser::allValuesEqual(url, oldURL));
}
+template<size_t length>
+static String wideString(const wchar_t (&url)[length])
+{
+ StringBuilder builder;
+ builder.reserveCapacity(length - 1);
+ for (size_t i = 0; i < length - 1; ++i)
+ builder.append(url[i]);
+ return builder.toString();
+}
+
TEST_F(URLParserTest, Basic)
{
checkURL("http://user:[email protected]:123/path?query#fragment", {"http", "user", "pass", "webkit.org", 123, "/path", "query", "fragment", "http://user:[email protected]:123/path?query#fragment"});
@@ -209,6 +219,17 @@
checkRelativeURL("//whatwg.org/index.html", "https://www.webkit.org/path", {"https", "", "", "whatwg.org", 0, "/index.html", "", "", "https://whatwg.org/index.html"});
checkRelativeURL("http://example\t.\norg", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/", "", "", "http://example.org/"});
checkRelativeURL("test", "file:///path1/path2", {"file", "", "", "", 0, "/path1/test", "", "", "file:///path1/test"});
+ checkRelativeURL(wideString(L"http://www.foo。bar.com"), "http://other.com/", {"http", "", "", "www.foo.bar.com", 0, "/", "", "", "http://www.foo.bar.com/"});
+ checkRelativeURL(wideString(L"sc://ñ.test/"), "about:blank", {"sc", "", "", "xn--ida.test", 0, "/", "", "", "sc://xn--ida.test/"});
+ checkRelativeURL("#fragment", "http://host/path", {"http", "", "", "host", 0, "/path", "", "fragment", "http://host/path#fragment"});
+ checkRelativeURL("?query", "http://host/path", {"http", "", "", "host", 0, "/path", "query", "", "http://host/path?query"});
+ checkRelativeURL("?query#fragment", "http://host/path", {"http", "", "", "host", 0, "/path", "query", "fragment", "http://host/path?query#fragment"});
+ checkRelativeURL(wideString(L"?β"), "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/foo/bar", "%CE%B2", "", "http://example.org/foo/bar?%CE%B2"});
+ checkRelativeURL("?", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/foo/bar", "", "", "http://example.org/foo/bar?"});
+ checkRelativeURL("#", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/foo/bar", "", "", "http://example.org/foo/bar#"});
+ checkRelativeURL("?#", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/foo/bar", "", "", "http://example.org/foo/bar?#"});
+ checkRelativeURL("#?", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/foo/bar", "", "?", "http://example.org/foo/bar#?"});
+ checkRelativeURL("/", "http://example.org/foo/bar", {"http", "", "", "example.org", 0, "/", "", "", "http://example.org/"});
}
static void checkURLDifferences(const String& urlString, const ExpectedParts& partsNew, const ExpectedParts& partsOld)
@@ -330,6 +351,9 @@
checkURLDifferences("file://[0:a:0:0:b:c:0:0]/path",
{"file", "", "", "[0:a::b:c:0:0]", 0, "/path", "", "", "file://[0:a::b:c:0:0]/path"},
{"file", "", "", "[0:a:0:0:b:c:0:0]", 0, "/path", "", "", "file://[0:a:0:0:b:c:0:0]/path"});
+ checkRelativeURLDifferences(wideString(L"#β"), "http://example.org/foo/bar",
+ {"http", "", "", "example.org", 0, "/foo/bar", "", wideString(L"β"), wideString(L"http://example.org/foo/bar#β")},
+ {"http", "", "", "example.org", 0, "/foo/bar", "", "%CE%B2", "http://example.org/foo/bar#%CE%B2"});
// FIXME: This behavior ought to be specified in the standard.
// With the existing URL::parse, WebKit returns "https:/", Firefox returns "https:///", and Chrome throws an error.
@@ -351,6 +375,9 @@
{"http", "", "", "host%73", 0, "/", "", "", "http://host%73/"});
// URLParser matches Chrome and the spec, but not URL::parse or Firefox.
+ checkURLDifferences(wideString(L"http://0Xc0.0250.01"),
+ {"http", "", "", "192.168.0.1", 0, "/", "", "", "http://192.168.0.1/"},
+ {"http", "", "", "0xc0.0250.01", 0, "/", "", "", "http://0xc0.0250.01/"});
checkURLDifferences("http://host/path%2e.%2E",
{"http", "", "", "host", 0, "/path...", "", "", "http://host/path..."},
{"http", "", "", "host", 0, "/path%2e.%2E", "", "", "http://host/path%2e.%2E"});
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
