Diff
Modified: trunk/LayoutTests/ChangeLog (277229 => 277230)
--- trunk/LayoutTests/ChangeLog 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/LayoutTests/ChangeLog 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,3 +1,17 @@
+2021-05-08 Ricky Mondello <[email protected]>
+
+ Fix a typo
+ https://bugs.webkit.org/show_bug.cgi?id=225502
+
+ Reviewed by Chris Dumez.
+
+ Update test expectations.
+
+ * http/tests/in-app-browser-privacy/context-string-preconnect-expected.txt:
+ * http/tests/preconnect/link-header-rel-preconnect-http-expected.txt:
+ * http/tests/preconnect/link-rel-preconnect-http-expected.txt:
+ * http/tests/preconnect/link-rel-preconnect-https-expected.txt:
+
2021-05-07 Lauro Moura <[email protected]>
[WPE] Tentative gardening of crashes after last sdk update
Modified: trunk/LayoutTests/http/tests/in-app-browser-privacy/context-string-preconnect-expected.txt (277229 => 277230)
--- trunk/LayoutTests/http/tests/in-app-browser-privacy/context-string-preconnect-expected.txt 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/LayoutTests/http/tests/in-app-browser-privacy/context-string-preconnect-expected.txt 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: Successfuly preconnected to http://localhost:8000/
+CONSOLE MESSAGE: Successfully preconnected to http://localhost:8000/
Tests that preconnect tasks get marked with the proper context string.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/LayoutTests/http/tests/preconnect/link-header-rel-preconnect-http-expected.txt (277229 => 277230)
--- trunk/LayoutTests/http/tests/preconnect/link-header-rel-preconnect-http-expected.txt 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/LayoutTests/http/tests/preconnect/link-header-rel-preconnect-http-expected.txt 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: Successfuly preconnected to http://localhost:8000/
+CONSOLE MESSAGE: Successfully preconnected to http://localhost:8000/
Tests that Link header's rel=preconnect works as expected over HTTP.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-http-expected.txt (277229 => 277230)
--- trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-http-expected.txt 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-http-expected.txt 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: Successfuly preconnected to http://localhost:8000/
+CONSOLE MESSAGE: Successfully preconnected to http://localhost:8000/
Tests that Link's rel=preconnect works as expected over HTTP.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-https-expected.txt (277229 => 277230)
--- trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-https-expected.txt 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/LayoutTests/http/tests/preconnect/link-rel-preconnect-https-expected.txt 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: Successfuly preconnected to https://localhost:8443/
+CONSOLE MESSAGE: Successfully preconnected to https://localhost:8443/
Tests that Link's rel=preconnect works as expected over HTTPS.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/Source/WebCore/ChangeLog (277229 => 277230)
--- trunk/Source/WebCore/ChangeLog 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/Source/WebCore/ChangeLog 2021-05-08 17:56:35 UTC (rev 277230)
@@ -1,3 +1,13 @@
+2021-05-08 Ricky Mondello <[email protected]>
+
+ Fix a typo
+ https://bugs.webkit.org/show_bug.cgi?id=225502
+
+ Reviewed by Chris Dumez.
+
+ * loader/LinkLoader.cpp:
+ (WebCore::LinkLoader::preconnectIfNeeded):
+
2021-05-08 Megan Gardner <[email protected]>
Increase stored AppHighlight character limit to 500
Modified: trunk/Source/WebCore/loader/LinkLoader.cpp (277229 => 277230)
--- trunk/Source/WebCore/loader/LinkLoader.cpp 2021-05-08 16:54:09 UTC (rev 277229)
+++ trunk/Source/WebCore/loader/LinkLoader.cpp 2021-05-08 17:56:35 UTC (rev 277230)
@@ -224,7 +224,7 @@
if (!error.isNull())
weakDocument->addConsoleMessage(MessageSource::Network, MessageLevel::Error, makeString("Failed to preconnect to "_s, href.string(), ". Error: "_s, error.localizedDescription()));
else
- weakDocument->addConsoleMessage(MessageSource::Network, MessageLevel::Info, makeString("Successfuly preconnected to "_s, href.string()));
+ weakDocument->addConsoleMessage(MessageSource::Network, MessageLevel::Info, makeString("Successfully preconnected to "_s, href.string()));
});
}