Timeline
Nov 6, 2016:
- 10:12 PM Changeset in webkit [208421] by
-
- 8 edits in branches/safari-602-branch/Source/WebCore
Merge r208392. rdar://problem/28409526
Nov 5, 2016:
- 11:00 AM Changeset in webkit [208420] by
-
- 4 edits in trunk/Source
Fixed compilation of LLInt with MinGW
https://bugs.webkit.org/show_bug.cgi?id=164449
Reviewed by Michael Catanzaro.
MinGW uses LLIntAssembly.h with GNU assembler syntax, just like GCC on
other platforms.
Source/JavaScriptCore:
- llint/LowLevelInterpreter.cpp: Include LLIntAssembly.h with
appropriate preamble.
Source/WTF:
- wtf/InlineASM.h: Define LOCAL_LABEL_STRING as .L#name for MinGW.
- 10:59 AM Changeset in webkit [208419] by
-
- 3 edits in trunk/LayoutTests
Removing flaky expectations for tests that were fixed with r208327.
https://bugs.webkit.org/show_bug.cgi?id=164034
Unreviewed test gardening.
- TestExpectations:
- platform/mac/TestExpectations:
- 10:58 AM Changeset in webkit [208418] by
-
- 4 edits in trunk
[MinGW] Fixed C99/C++11 format attributes in printf-like functions
https://bugs.webkit.org/show_bug.cgi?id=164448
Reviewed by Michael Catanzaro.
By default MinGW uses printf-like function provided in msvcrt.dll,
however they miss support for C99/C++11 format attributes. Use MinGW
implementations instead.
.:
- Source/cmake/OptionsCommon.cmake: Define USE_MINGW_ANSI_STDIO
Source/WTF:
- wtf/Assertions.h: Use gnu_printf format in WTF_ATTRIBUTE_PRINTF
- 1:24 AM Changeset in webkit [208417] by
-
- 2 edits in trunk/Source/WTF
[JSCOnly] RunLoopGeneric should adopt MonotonicTime / WallTime change
https://bugs.webkit.org/show_bug.cgi?id=164447
Reviewed by Csaba Osztrogonác.
Build fix for JSCOnly.
- wtf/generic/RunLoopGeneric.cpp:
(WTF::RunLoop::TimerBase::ScheduledTask::create):
(WTF::RunLoop::TimerBase::ScheduledTask::ScheduledTask):
(WTF::RunLoop::TimerBase::ScheduledTask::scheduledTimePoint):
(WTF::RunLoop::TimerBase::ScheduledTask::updateReadyTime):
(WTF::RunLoop::populateTasks):
(WTF::RunLoop::dispatchAfter):
(WTF::RunLoop::TimerBase::start):
- 12:56 AM Changeset in webkit [208416] by
-
- 4 edits in trunk
[SOUP] Layout test http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html fails
https://bugs.webkit.org/show_bug.cgi?id=139358
Reviewed by Michael Catanzaro.
Source/WebKit2:
Stop putting the credentials in the URL unconditionally and ensure we only do that when provided by the URL
itself. Libsoup has its own cache of SoupAuth, so we don't need to pass user/pass in the URL for every single
request, libsoup will authenticate those automatically.
- NetworkProcess/soup/NetworkDataTaskSoup.cpp:
(WebKit::NetworkDataTaskSoup::applyAuthenticationToRequest):
LayoutTests:
- platform/gtk/TestExpectations: Unskip http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html.