[webkit-changes] [WebKit/WebKit] 2a5083: Web Inspector: UAF needs to be prevented for Remot...

2024-10-11 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 2a508351f154cb9a1ff2789d0fceb615f4dd2d7d
  
https://github.com/WebKit/WebKit/commit/2a508351f154cb9a1ff2789d0fceb615f4dd2d7d
  Author: Robert Jenner 
  Date:   2024-10-11 (Fri, 11 Oct 2024)

  Changed paths:
M Source/JavaScriptCore/inspector/remote/RemoteConnectionToTarget.cpp
M Source/JavaScriptCore/inspector/remote/RemoteConnectionToTarget.h
M Source/JavaScriptCore/inspector/remote/RemoteControllableTarget.h
M 
Source/JavaScriptCore/inspector/remote/cocoa/RemoteConnectionToTargetCocoa.mm
M Source/JavaScriptCore/runtime/JSGlobalObject.cpp
M Source/JavaScriptCore/runtime/JSGlobalObject.h
M Source/JavaScriptCore/runtime/JSGlobalObjectDebuggable.cpp
M Source/JavaScriptCore/runtime/JSGlobalObjectDebuggable.h
M Source/WebCore/page/Page.cpp
M Source/WebCore/page/Page.h
M Source/WebCore/page/PageDebuggable.cpp
M Source/WebCore/page/PageDebuggable.h
M Source/WebCore/workers/service/context/ServiceWorkerDebuggable.cpp
M Source/WebCore/workers/service/context/ServiceWorkerDebuggable.h
M Source/WebCore/workers/service/context/ServiceWorkerThreadProxy.cpp
M Source/WebCore/workers/service/context/ServiceWorkerThreadProxy.h
M Source/WebKit/UIProcess/Automation/WebAutomationSession.cpp
M Source/WebKit/UIProcess/Automation/WebAutomationSession.h
M Source/WebKit/UIProcess/Inspector/WebPageDebuggable.cpp
M Source/WebKit/UIProcess/Inspector/WebPageDebuggable.h
M Source/WebKit/UIProcess/WebPageProxy.cpp
M Source/WebKit/UIProcess/WebPageProxy.h

  Log Message:
  ---
  Web Inspector: UAF needs to be prevented for 
RemoteConnectionToTarget::m_target member variable
https://bugs.webkit.org/show_bug.cgi?id=276192
rdar://129782183

Reviewed by Geoffrey Garen.

`RemoteConnectionToTarget::m_target` was a raw pointer and used from multiple 
thread.
We have evidence from the radar that `m_target` could be used-after-free in
`RemoteConnectionToTarget::close()`.

To address the issue, I am updating `m_target` to use a ThreadSafeWeakPtr 
instead
of a raw pointer so that it gets nulled out on target destruction, and still 
safe
to use from multiple thread.

Of course, using ThreadSafeWeakPtr required updating `RemoteControllableTarget` 
to
subclass `ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr` and be refcounted. 
This
required a decent amount of refactoring.

I am also adding WTF_GUARDED_BY_LOCK for the m_target so that the compiler tells
us when we're using it without a lock. It did find a few problems which I fixed.

* Source/JavaScriptCore/inspector/remote/RemoteConnectionToTarget.cpp:
(Inspector::RemoteConnectionToTarget::setup):
(Inspector::RemoteConnectionToTarget::sendMessageToTarget): Deleted.
(Inspector::RemoteConnectionToTarget::close): Deleted.
(Inspector::RemoteConnectionToTarget::targetClosed): Deleted.
(Inspector::RemoteConnectionToTarget::targetIdentifier const): Deleted.
(Inspector::RemoteConnectionToTarget::sendMessageToFrontend): Deleted.
* Source/JavaScriptCore/inspector/remote/RemoteConnectionToTarget.h:
* Source/JavaScriptCore/inspector/remote/RemoteControllableTarget.h:
* Source/JavaScriptCore/inspector/remote/cocoa/RemoteConnectionToTargetCocoa.mm:
(Inspector::RemoteConnectionToTarget::targetIdentifier const):
(Inspector::RemoteConnectionToTarget::setup):
(Inspector::RemoteConnectionToTarget::close):
(Inspector::RemoteConnectionToTarget::sendMessageToTarget):
(Inspector::RemoteConnectionToTarget::sendMessageToFrontend):
(Inspector::RemoteConnectionToTarget::setupRunLoop):
* Source/JavaScriptCore/runtime/JSGlobalObject.cpp:
(JSC::JSGlobalObject::~JSGlobalObject):
(JSC::JSGlobalObject::init):
* Source/JavaScriptCore/runtime/JSGlobalObject.h:
(JSC::JSGlobalObject::inspectorDebuggable):
* Source/JavaScriptCore/runtime/JSGlobalObjectDebuggable.cpp:
(JSC::JSGlobalObjectDebuggable::create):
(JSC::JSGlobalObjectDebuggable::JSGlobalObjectDebuggable):
(JSC::JSGlobalObjectDebuggable::name const):
(JSC::JSGlobalObjectDebuggable::connect):
(JSC::JSGlobalObjectDebuggable::disconnect):
(JSC::JSGlobalObjectDebuggable::dispatchMessageFromRemote):
(JSC::JSGlobalObjectDebuggable::pauseWaitingForAutomaticInspection):
(JSC::JSGlobalObjectDebuggable::globalObjectDestroyed):
* Source/JavaScriptCore/runtime/JSGlobalObjectDebuggable.h:
* Source/WebCore/page/Page.cpp:
(WebCore::Page::Page):
(WebCore::Page::~Page):
* Source/WebCore/page/Page.h:
* Source/WebCore/page/PageDebuggable.cpp:
(WebCore::PageDebuggable::create):
(WebCore::PageDebuggable::PageDebuggable):
(WebCore::PageDebuggable::name const):
(WebCore::PageDebuggable::url const):
(WebCore::PageDebuggable::hasLocalDebugger const):
(WebCore::PageDebuggable::connect):
(WebCore::PageDebuggable::disconnect):
(WebCore::PageDebuggable::dispatchMessageFromRemote):
(WebCore::PageDebuggable::setIndicating):
(WebCore::PageDebuggable::detachFromPage):
* Source/WebCore/page/PageDebuggable.h:
* Source/WebCore/wo

[webkit-changes] [WebKit/WebKit] b69d0a: [GARDENING]REGRESSION(Ventura 13.3): [ Ventura arm...

2024-10-02 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: b69d0abedec6f69a515b820c10f48ab63b74452b
  
https://github.com/WebKit/WebKit/commit/b69d0abedec6f69a515b820c10f48ab63b74452b
  Author: Robert Jenner 
  Date:   2024-10-02 (Wed, 02 Oct 2024)

  Changed paths:
M LayoutTests/platform/mac/TestExpectations

  Log Message:
  ---
  [GARDENING]REGRESSION(Ventura 13.3): [ Ventura arm64 ] 2X 
imported/mozilla/svg/smil/style/anim-css-fontsize-1-from (layout-tests) are 
constant ImageOnlyFailures
rdar://108682737
https://bugs.webkit.org/show_bug.cgi?id=256116

Unreviewed test gardening.

Removing prior set test expectations, as these tests are now passing.

* LayoutTests/platform/mac/TestExpectations:

Canonical link: https://commits.webkit.org/284569@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] c78cae: Bring up tvOS 18, watchOS 11, and visionOS 2 on po...

2024-09-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: c78cae7fc1f5b40089629f152c2a4f20fdc6cd98
  
https://github.com/WebKit/WebKit/commit/c78cae7fc1f5b40089629f152c2a4f20fdc6cd98
  Author: Robert Jenner 
  Date:   2024-09-20 (Fri, 20 Sep 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories_unittest.py
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS18.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS18Simulator.png
R Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17Simulator.png
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS18.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS18Simulator.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS10.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS11.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator10.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator11.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/visionOS2.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/visionOS2Simulator.png
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js
M Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css
M Tools/CISupport/build-webkit-org/wkbuild.py
M Tools/CISupport/build-webkit-org/wkbuild_unittest.py

  Log Message:
  ---
  Bring up tvOS 18, watchOS 11, and visionOS 2 on post-commit open source
rdar://136256221
https://bugs.webkit.org/show_bug.cgi?id=279937

Reviewed by Jonathan Bedard and Ryan Haddad.

This change brings up tvOS 18, watchOS 11, and visionOS 2 in our post-commit 
open source infrastructure.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS18.png: 
Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS18Simulator.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17.png: 
Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17Simulator.png:
 Removed.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS18.png: 
Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS18Simulator.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS10.png: 
Removed.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS11.png: 
Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator10.png:
 Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator11.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/visionOS2.png: 
Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/visionOS2Simulator.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js:
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css:
(table.queue-grid tr.platform.visionos-simulator-2 img.logo):
(table.queue-grid tr.platform.visionos-2 img.logo):
(table.queue-grid tr.platform.tvos-simulator-18 img.logo):
(table.queue-grid tr.platform.tvos-18 img.logo):
(table.queue-grid tr.platform.watchos-simulator-11 img.logo):
(table.queue-grid tr.platform.watchos-11 img.logo):
(table.queue-grid tr.platform.visionos-simulator-1 img.logo): Deleted.
(table.queue-grid tr.platform.visionos-1 img.logo): Deleted.
(table.queue-grid tr.platform.tvos-simulator-17 img.logo): Deleted.
(table.queue-grid tr.platform.tvos-17 img.logo): Deleted.
(table.queue-grid tr.platform.watchos-simulator-10 img.logo): Deleted.
(table.queue-grid tr.platform.watchos-10 img.logo): Deleted.
* Tools/CISupport/build-webkit-org/wkbuild.py:
(_should_file_trigger_build):
* Tools/CISupport/build-webkit-org/wkbuild_unittest.py:
(ShouldBuildTest):
(ShouldBuildTest.test_should_build):

Canonical link: https://commits.webkit.org/284007@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 2011d5: Bring up macOS Sequoia Builders and Testers for bu...

2024-09-18 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 2011d5b413c7762723ccd9549300444d88b3d450
  
https://github.com/WebKit/WebKit/commit/2011d5b413c7762723ccd9549300444d88b3d450
  Author: Robert Jenner 
  Date:   2024-09-18 (Wed, 18 Sep 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories_unittest.py
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/Sequoia.png
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js
M Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css
M Tools/CISupport/build-webkit-org/wkbuild.py
M Websites/webkit.org/wp-content/themes/webkit/build-archives.php

  Log Message:
  ---
  Bring up macOS Sequoia Builders and Testers for build.webkit.org
rdar://135588944
https://bugs.webkit.org/show_bug.cgi?id=279908

Reviewed by Ryan Haddad.

Master config and dashboard change to add Sequoia to our OpenSource Post-Commit 
queue.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/Sequoia.png: 
Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js:
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):
* Tools/CISupport/build-webkit-org/wkbuild.py:
(_should_file_trigger_build):
* Websites/webkit.org/wp-content/themes/webkit/build-archives.php:

Canonical link: https://commits.webkit.org/283874@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-09-16 Thread WebKit-Jenner
  Branch: refs/heads/safari-7619.1.26.10-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-09-16 Thread WebKit-Jenner
  Branch: refs/heads/safari-7619.1.26.11-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-09-16 Thread WebKit-Jenner
  Branch: refs/heads/safari-7619-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-09-16 Thread WebKit-Jenner
  Branch: refs/heads/safari-7619.1.26-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] d4ad37: [ews] Add 2 bots to watchOS-10-Build-EWS and 1 bot...

2024-08-30 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: d4ad3706bd934f69a048b2c72f32cb499222839e
  
https://github.com/WebKit/WebKit/commit/d4ad3706bd934f69a048b2c72f32cb499222839e
  Author: Robert Jenner 
  Date:   2024-08-30 (Fri, 30 Aug 2024)

  Changed paths:
M Tools/CISupport/ews-build/config.json

  Log Message:
  ---
  [ews] Add 2 bots to watchOS-10-Build-EWS and 1 bot to 
watchOS-10-Simulator-Build-EWS
rdar://133411772
https://bugs.webkit.org/show_bug.cgi?id=27

Reviewed by Ryan Haddad and Aakash Jain.

Adding two new bots to watchOS-10-Build-EWS and one new bot to 
watchOS-10-Simulator-Build-EWS

* Tools/CISupport/ews-build/config.json:

Canonical link: https://commits.webkit.org/282978@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] b55cf2: Unreviewed, reverting 282338@main (ed88665aadd6)

2024-08-16 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: b55cf2c7e694d7bbe844894432b9eedd0f6fb102
  
https://github.com/WebKit/WebKit/commit/b55cf2c7e694d7bbe844894432b9eedd0f6fb102
  Author: Robert Jenner 
  Date:   2024-08-16 (Fri, 16 Aug 2024)

  Changed paths:
M Source/WebKit/CMakeLists.txt
M Source/WebKit/DerivedSources-input.xcfilelist
M Source/WebKit/DerivedSources-output.xcfilelist
M Source/WebKit/DerivedSources.make
M Source/WebKit/PlatformMac.cmake
M Source/WebKit/Shared/WebCoreArgumentCoders.serialization.in
M 
Source/WebKit/SmartPointerExpectations/NoUncountedMemberCheckerExpectations
M Source/WebKit/Sources.txt
R 
Source/WebKit/UIProcess/DigitalCredentials/DigitalCredentialsCoordinatorProxy.cpp
R 
Source/WebKit/UIProcess/DigitalCredentials/DigitalCredentialsCoordinatorProxy.h
R 
Source/WebKit/UIProcess/DigitalCredentials/DigitalCredentialsCoordinatorProxy.messages.in
M Source/WebKit/UIProcess/WebPageProxy.cpp
M Source/WebKit/UIProcess/WebPageProxy.h
M Source/WebKit/WebKit.xcodeproj/project.pbxproj
R 
Source/WebKit/WebProcess/DigitalCredentials/DigitalCredentialsCoordinator.cpp
R 
Source/WebKit/WebProcess/DigitalCredentials/DigitalCredentialsCoordinator.h
M Source/WebKit/WebProcess/GPU/graphics/WebGPU/RemoteXRBindingProxy.cpp
M Source/WebKit/WebProcess/GPU/graphics/WebGPU/RemoteXRBindingProxy.h
M Source/WebKit/WebProcess/WebPage/WebPage.cpp

  Log Message:
  ---
  Unreviewed, reverting 282338@main (ed88665aadd6)
https://bugs.webkit.org/show_bug.cgi?id=277384
rdar://132853809

Digital Credentials: implement IPC layer

Reverted change:

Digital Credentials: implement IPC layer
https://bugs.webkit.org/show_bug.cgi?id=277384
rdar://132853809
282338@main (ed88665aadd6)

Canonical link: https://commits.webkit.org/282355@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 22031e: [ews-build.webkit.org] Bring up an Intel / x86 lay...

2024-08-15 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 22031e410ff823336fd1a0fd0c36e76f07ada9c2
  
https://github.com/WebKit/WebKit/commit/22031e410ff823336fd1a0fd0c36e76f07ada9c2
  Author: Robert Jenner 
  Date:   2024-08-15 (Thu, 15 Aug 2024)

  Changed paths:
M Tools/CISupport/ews-app/ews/common/buildbot.py
M Tools/CISupport/ews-app/ews/common/github.py
M Tools/CISupport/ews-app/ews/views/statusbubble.py
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories_unittest.py
M Tools/CISupport/ews-build/steps.py

  Log Message:
  ---
  [ews-build.webkit.org] Bring up an Intel / x86 layout test queue
https://bugs.webkit.org/show_bug.cgi?id=278172
rdar://127512584

Reviewed by Ryan Haddad and Jonathan Bedard.

Config change to bring up mac-Intel-WK2 EWS queue.

* Tools/CISupport/ews-app/ews/common/github.py:
(GitHubEWS):
* Tools/CISupport/ews-app/ews/views/statusbubble.py:
(StatusBubble):
* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):

Canonical link: https://commits.webkit.org/282314@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] d7a3f8: [UN-GARDENING][ Mac Debug WK2 ] workers/worker-to-...

2024-08-15 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: d7a3f89ea3cd25929ced6a1a4caefca130fd1960
  
https://github.com/WebKit/WebKit/commit/d7a3f89ea3cd25929ced6a1a4caefca130fd1960
  Author: Robert Jenner 
  Date:   2024-08-15 (Thu, 15 Aug 2024)

  Changed paths:
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [UN-GARDENING][ Mac Debug WK2 ] workers/worker-to-worker.html is consistently 
crashing
https://bugs.webkit.org/show_bug.cgi?id=278041
rdar://133784222

Unreviewed test gardening.

Test is no longer crashing. Un-gardening for clean up.

* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/282295@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 20bce1: [GARDENING][ Mac Debug WK2 ] workers/worker-to-wor...

2024-08-13 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 20bce1134f4357b05e38dd738736f2b78c9244e3
  
https://github.com/WebKit/WebKit/commit/20bce1134f4357b05e38dd738736f2b78c9244e3
  Author: Robert Jenner 
  Date:   2024-08-13 (Tue, 13 Aug 2024)

  Changed paths:
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [GARDENING][ Mac Debug WK2 ] workers/worker-to-worker.html is consistently 
crashing
rdar://133784222
https://bugs.webkit.org/show_bug.cgi?id=278041

Unreviewed Test Gardening.

* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/282190@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.5-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.8-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.10-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.9-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.11.10-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.11-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.4-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.6-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-07-31 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.3.1-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] a45e4b: Unreviewed, reverting 281578@main (777e85a03a9a)

2024-07-30 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: a45e4bc20d2d2983f3b8406e66b3f0b9e1e6df46
  
https://github.com/WebKit/WebKit/commit/a45e4bc20d2d2983f3b8406e66b3f0b9e1e6df46
  Author: Robert Jenner 
  Date:   2024-07-30 (Tue, 30 Jul 2024)

  Changed paths:
M Source/WebKit/UIProcess/API/Cocoa/_WKWebsiteDataStoreConfiguration.h
M Source/WebKit/UIProcess/API/Cocoa/_WKWebsiteDataStoreConfiguration.mm
M Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.cpp
M Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h

  Log Message:
  ---
  Unreviewed, reverting 281578@main (777e85a03a9a)
https://bugs.webkit.org/show_bug.cgi?id=277291
rdar://132761006

Add SPI to create _WKWebsiteDataStoreConfiguration with base directory

Reverted change:

Add SPI to create _WKWebsiteDataStoreConfiguration with base directory
https://bugs.webkit.org/show_bug.cgi?id=277291
rdar://132761006
281578@main (777e85a03a9a)

Canonical link: https://commits.webkit.org/281583@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] a294ed: [REBASELINE][ macOS ] Multiple tests need to be re...

2024-07-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: a294edc71de75f0c05bd6f73ea6d0a3c367c90c7
  
https://github.com/WebKit/WebKit/commit/a294edc71de75f0c05bd6f73ea6d0a3c367c90c7
  Author: Robert Jenner 
  Date:   2024-07-12 (Fri, 12 Jul 2024)

  Changed paths:
M LayoutTests/platform/mac-wk1/TestExpectations
A 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_codecs_order_1-expected.txt
A 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_1-expected.txt
A 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_two_implies_one_1-expected.txt
A 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_two_implies_one_2-expected.txt
A LayoutTests/platform/mac-wk1/media/media-can-play-webm-expected.txt
M LayoutTests/platform/mac-wk2/TestExpectations
A 
LayoutTests/platform/mac-wk2/imported/w3c/web-platform-tests/media-source/SourceBuffer-abort-updating-expected.txt

  Log Message:
  ---
  [REBASELINE][ macOS ] Multiple tests need to be rebaselined
https://bugs.webkit.org/show_bug.cgi?id=276555
rdar://131636247

Unreviewed test gardening.

Rebaslining multiple tests.

* LayoutTests/platform/mac-wk1/TestExpectations:
* 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_codecs_order_1-expected.txt:
 Added.
* 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_1-expected.txt:
 Added.
* 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_two_implies_one_1-expected.txt:
 Added.
* 
LayoutTests/platform/mac-wk1/media/W3C/video/canPlayType/canPlayType_two_implies_one_2-expected.txt:
 Added.
* LayoutTests/platform/mac-wk1/media/media-can-play-webm-expected.txt: Added.
* LayoutTests/platform/mac-wk2/TestExpectations:
* 
LayoutTests/platform/mac-wk2/imported/w3c/web-platform-tests/media-source/SourceBuffer-abort-updating-expected.txt:
 Added.

Canonical link: https://commits.webkit.org/280931@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 7122ad: Unreviewed, reverting 280922@main (0a169e24c5d4) B...

2024-07-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 7122adc822255b957cd915001671e148b53f0354
  
https://github.com/WebKit/WebKit/commit/7122adc822255b957cd915001671e148b53f0354
  Author: Robert Jenner 
  Date:   2024-07-12 (Fri, 12 Jul 2024)

  Changed paths:
A .clangd
M .gitignore
M Source/WTF/WTF.xcodeproj/project.pbxproj
M Source/cmake/WebKitCommon.cmake
R Tools/Scripts/webkitpy/autoinstalled/jinja2.py
R Tools/Scripts/webkitpy/autoinstalled/yaml.py
R Tools/clangd/clangd auto-setup.png
R Tools/clangd/clangd auto-setup.svg
R Tools/clangd/clangd-check-codebase
R Tools/clangd/clangd-check-file
R Tools/clangd/clangd-config.yaml.jinja
R Tools/clangd/update-clangd-config
R Tools/clangd/update-compile-commands-conf
R Tools/clangd/update-compile-commands-symlink
R Tools/clangd/update-compile-commands-symlink.conf.example

  Log Message:
  ---
  Unreviewed, reverting 280922@main (0a169e24c5d4) Broke multiple Apple builds.
https://bugs.webkit.org/show_bug.cgi?id=274909
rdar://131636190

[cmake] clangd auto-setup

Reverted change:

[cmake] Auto-complete via clangd auto-setup
https://bugs.webkit.org/show_bug.cgi?id=274909
280922@main (0a169e24c5d4)

Canonical link: https://commits.webkit.org/280928@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 1954c3: [GARDENING][ macOS WK2 ] compositing/plugins/pdf/p...

2024-07-03 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 1954c37f7f7aa8e2274faebc5c5ae7d773a895c3
  
https://github.com/WebKit/WebKit/commit/1954c37f7f7aa8e2274faebc5c5ae7d773a895c3
  Author: Robert Jenner 
  Date:   2024-07-03 (Wed, 03 Jul 2024)

  Changed paths:
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [GARDENING][ macOS WK2 ] 
compositing/plugins/pdf/pdf-in-embed-with-root-page-zoom.html is a constant 
text failure
rdar://131082528
https://bugs.webkit.org/show_bug.cgi?id=276209

Unreviewed test gardening.

* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/280644@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] e604d0: REGRESSION(Sonoma): [ Sonoma+ ] 2X lookup menu-rel...

2024-07-02 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: e604d0614fb7aff6b92ae725c333f7232e9b0232
  
https://github.com/WebKit/WebKit/commit/e604d0614fb7aff6b92ae725c333f7232e9b0232
  Author: Robert Jenner 
  Date:   2024-07-02 (Tue, 02 Jul 2024)

  Changed paths:
M LayoutTests/platform/mac/TestExpectations

  Log Message:
  ---
  REGRESSION(Sonoma): [ Sonoma+ ] 2X lookup menu-related tests are constant 
text failures.
rdar://116437531
https://bugs.webkit.org/show_bug.cgi?id=262595

Unreviewed test gardening.

* LayoutTests/platform/mac/TestExpectations:

Canonical link: https://commits.webkit.org/280590@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] fdb96d: [ews-build.webkit.org] Bring up visionOS builders ...

2024-06-18 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: fdb96df63f8c94ca9ea9fd53cd62c4ce71956b30
  
https://github.com/WebKit/WebKit/commit/fdb96df63f8c94ca9ea9fd53cd62c4ce71956b30
  Author: Robert Jenner 
  Date:   2024-06-18 (Tue, 18 Jun 2024)

  Changed paths:
M Tools/CISupport/ews-app/ews/common/github.py
M Tools/CISupport/ews-app/ews/views/statusbubble.py
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories.py
M Tools/CISupport/ews-build/factories_unittest.py
M Tools/CISupport/ews-build/loadConfig.py
M Tools/CISupport/ews-build/steps.py
M Tools/CISupport/ews-build/steps_unittest.py

  Log Message:
  ---
  [ews-build.webkit.org] Bring up visionOS builders and testers on WebKit EWS
https://bugs.webkit.org/show_bug.cgi?id=275121
rdar://121394983

Reviewed by Aakash Jain.

PR to bring up testing of visionOS on EWS.

* Tools/CISupport/ews-app/ews/common/github.py:
* Tools/CISupport/ews-app/ews/views/statusbubble.py:
* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories.py:
(visionOSBuildFactory):
(visionOSEmbeddedBuildFactory):
(visionOSTestsFactory):
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/ews-build/loadConfig.py:
* Tools/CISupport/ews-build/steps_unittest.py:

Canonical link: https://commits.webkit.org/280135@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] a5c9be: Un-do running site-isolation tests singly

2024-06-03 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: a5c9be9c588d947f63b5cff4f8633f4ebf280e81
  
https://github.com/WebKit/WebKit/commit/a5c9be9c588d947f63b5cff4f8633f4ebf280e81
  Author: Robert Jenner 
  Date:   2024-06-03 (Mon, 03 Jun 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json

  Log Message:
  ---
  Un-do running site-isolation tests singly
https://bugs.webkit.org/show_bug.cgi?id=274973
rdar://129069174

Unreviewed config change.

Undoing the addition to run site-isolation tests singly.

* Tools/CISupport/build-webkit-org/config.json:

Canonical link: https://commits.webkit.org/279678@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] b5bebf: [ Site-Isolation ] Run site-isolation tests singly...

2024-05-31 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: b5bebf81106333240809e2969cd0ee7a447bda29
  
https://github.com/WebKit/WebKit/commit/b5bebf81106333240809e2969cd0ee7a447bda29
  Author: Robert Jenner 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations
M Tools/CISupport/build-webkit-org/config.json

  Log Message:
  ---
  [ Site-Isolation ] Run site-isolation tests singly (274973)
https://bugs.webkit.org/show_bug.cgi?id=274973
rdar://129069174

Reviewed by Alex Christensen and Jonathan Bedard.

This change will enable the site-isolation queue to run tests singly. Tests 
will still shard. However, running singly should dramatcially cut down on 
process leak, giving us better test results and more test enablement.

* LayoutTests/platform/mac-site-isolation/TestExpectations
* Tools/CISupport/build-webkit-org/config.json

Canonical link: https://commits.webkit.org/279592@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 1a2ff3: [ macOS Release ] TestWebKitAPI.HSTS.Preconnect is...

2024-05-30 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 1a2ff32f194dd697a4b90ec23978b67f893bef23
  
https://github.com/WebKit/WebKit/commit/1a2ff32f194dd697a4b90ec23978b67f893bef23
  Author: Robert Jenner 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M Tools/TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm

  Log Message:
  ---
  [ macOS Release ] TestWebKitAPI.HSTS.Preconnect is a flaky timeout (255560)
https://bugs.webkit.org/show_bug.cgi?id=255560
rdar://108167361

Reviewed by Ryan Haddad.

Disabling API test on mac due to negative impact on EWS.

* Tools/TestWebKitAPI/Tests/WebKitCocoa/HSTS.mm:
(TestWebKitAPI::TEST(HSTS, DISABLED_Preconnect)):
(TestWebKitAPI::TEST(HSTS, Preconnect)): Deleted.

Canonical link: https://commits.webkit.org/279555@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] bb30fd: Crash with ruby and continuations

2024-05-28 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: bb30fdac92be85496b875235c1372a152134ac22
  
https://github.com/WebKit/WebKit/commit/bb30fdac92be85496b875235c1372a152134ac22
  Author: Robert Jenner 
  Date:   2024-05-28 (Tue, 28 May 2024)

  Changed paths:
A LayoutTests/fast/ruby/ruby-continuation-crash-expected.txt
A LayoutTests/fast/ruby/ruby-continuation-crash.html
M Source/WebCore/rendering/updating/RenderTreeBuilder.cpp

  Log Message:
  ---
  Crash with ruby and continuations
https://bugs.webkit.org/show_bug.cgi?id=271167
rdar://124432235

Reviewed by Ryosuke Niwa.

* LayoutTests/fast/ruby/ruby-continuation-crash-expected.txt: Added.
* LayoutTests/fast/ruby/ruby-continuation-crash.html: Added.
* Source/WebCore/rendering/updating/RenderTreeBuilder.cpp:
(WebCore::RenderTreeBuilder::destroyAndCleanUpAnonymousWrappers):

Improve robustness by using WeakPtr for destroyRoot and null checking before 
calling destroy(*destroyRoot)
as it might get deleted by an earlier destroy() call.

Originally-landed-as: 272448.763@safari-7618-branch (df9629adcf83). 
rdar://128549808
Canonical link: https://commits.webkit.org/279408@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 92bcd7: [ visionOS Debug ] ASSERTION FAILED: parentProcess...

2024-05-24 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 92bcd775f93e36b7be9667259f89fe4343911a83
  
https://github.com/WebKit/WebKit/commit/92bcd775f93e36b7be9667259f89fe4343911a83
  Author: Robert Jenner 
  Date:   2024-05-24 (Fri, 24 May 2024)

  Changed paths:
M Tools/WebKitTestRunner/Configurations/WebKitTestRunnerApp.xcconfig

  Log Message:
  ---
  [ visionOS Debug ] ASSERTION FAILED: 
parentProcessHasServiceWorkerEntitlement() || 
shouldAllowServiceWorkersForAppBoundViews
https://bugs.webkit.org/show_bug.cgi?id=274629
rdar://128651013

Reviewed by Elliott Williams.

Adding iOS entitlements for visionOS.

* Tools/WebKitTestRunner/Configurations/WebKitTestRunnerApp.xcconfig:

Canonical link: https://commits.webkit.org/279299@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] b4e487: [build.webkit.org] Bring up open source visionOS b...

2024-05-23 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: b4e487b4319692a533e7b43a406530fda43c3018
  
https://github.com/WebKit/WebKit/commit/b4e487b4319692a533e7b43a406530fda43c3018
  Author: Robert Jenner 
  Date:   2024-05-23 (Thu, 23 May 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories.py
M Tools/CISupport/build-webkit-org/factories_unittest.py
M Tools/CISupport/build-webkit-org/loadConfig.py
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js
M Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css
M Tools/CISupport/build-webkit-org/steps.py
M Tools/CISupport/build-webkit-org/wkbuild.py
M Tools/CISupport/build-webkit-org/wkbuild_unittest.py

  Log Message:
  ---
  [build.webkit.org] Bring up open source visionOS builders and testers
https://bugs.webkit.org/show_bug.cgi?id=274272
rdar://121395049

Reviewed by Ryan Haddad.

Bring up of OpenSource visionOS builders and testers.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/factories.py:
(TestFactory.__init__):
* Tools/CISupport/build-webkit-org/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/build-webkit-org/loadConfig.py:
(loadBuilderConfig):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js:
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css:
(table.queue-grid tr.platform.visionos-simulator-1 img.logo):
(table.queue-grid tr.platform.visionos-1 img.logo):
* Tools/CISupport/build-webkit-org/steps.py:
(CustomFlagsMixin.customBuildFlag):
(CustomFlagsMixin.appendCustomBuildFlags):
(CustomFlagsMixin.appendCustomTestingFlags):
(CompileWebKit):
(CompileWebKit.evaluateCommand):
(PrintConfiguration.run):
* Tools/CISupport/build-webkit-org/wkbuild.py:
(_should_file_trigger_build):
* Tools/CISupport/build-webkit-org/wkbuild_unittest.py:
(ShouldBuildTest):
(ShouldBuildTest.test_should_build):

Canonical link: https://commits.webkit.org/279249@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] ed0a8a: Add visionOS to the built product archive

2024-05-23 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: ed0a8af440979e2c7c671c240a09a5e4ec4e089f
  
https://github.com/WebKit/WebKit/commit/ed0a8af440979e2c7c671c240a09a5e4ec4e089f
  Author: Robert Jenner 
  Date:   2024-05-23 (Thu, 23 May 2024)

  Changed paths:
M Tools/CISupport/built-product-archive

  Log Message:
  ---
  Add visionOS to the built product archive
https://bugs.webkit.org/show_bug.cgi?id=274572
rdar://128587087

Unreviewed follow-up fix. Missing a comma.

* Tools/CISupport/built-product-archive:
(archiveBuiltProduct):

Canonical link: https://commits.webkit.org/279223@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] fefe94: Add visionOS to the built product archive

2024-05-23 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: fefe9454de00f4d8e468aaed165810758345f0f4
  
https://github.com/WebKit/WebKit/commit/fefe9454de00f4d8e468aaed165810758345f0f4
  Author: Robert Jenner 
  Date:   2024-05-23 (Thu, 23 May 2024)

  Changed paths:
M Tools/CISupport/built-product-archive

  Log Message:
  ---
  Add visionOS to the built product archive
https://bugs.webkit.org/show_bug.cgi?id=274572
rdar://128587087

Unreviewed.

Adding visionOS to the built product archive.

* Tools/CISupport/built-product-archive:
(webkitBuildDirectoryForConfigurationAndPlatform):
(determineWebKitBuildDirectories):
(archiveBuiltProduct):
(extractBuiltProduct):

Canonical link: https://commits.webkit.org/279207@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 81f909: Versioning.

2024-05-14 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.2.12.11-branch
  Home:   https://github.com/WebKit/WebKit
  Commit: 81f909247af06819839196e4f9979c94698cfd35
  
https://github.com/WebKit/WebKit/commit/81f909247af06819839196e4f9979c94698cfd35
  Author: Mohsin Qureshi 
  Date:   2024-04-15 (Mon, 15 Apr 2024)

  Changed paths:
M Configurations/Version.xcconfig

  Log Message:
  ---
  Versioning.

WebKit-7618.2.12.11.1

Canonical link: https://commits.webkit.org/272448.932@safari-7618.2.12.11-branch


  Commit: 89cc7e8043da967517b409ebbcee648c38499638
  
https://github.com/WebKit/WebKit/commit/89cc7e8043da967517b409ebbcee648c38499638
  Author: Chris Dumez 
  Date:   2024-04-16 (Tue, 16 Apr 2024)

  Changed paths:
M Source/WebKit/Shared/AuxiliaryProcess.h
M Source/WebKit/Shared/AuxiliaryProcess.messages.in
M Source/WebKit/Shared/Cocoa/AuxiliaryProcessCocoa.mm
M Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp
M Source/WebKit/UIProcess/AuxiliaryProcessProxy.h
M Source/WebKit/UIProcess/Cocoa/AuxiliaryProcessProxyCocoa.mm

  Log Message:
  ---
  Cherry-pick d6540a38e780. rdar://126492909

Regression(277427@main) Crash under 
AuxiliaryProcessProxy::notifyPreferencesChanged()
https://bugs.webkit.org/show_bug.cgi?id=272695
rdar://126492909

Reviewed by Per Arne Vollan.

We were using a HashMap to store preferences whose key was a 
std::pair.
The first String was the domain and the second the preference name. 
However, for global
preferences, the domain is null, causing a crash when hashing the key.

To address an issue, we now store global preferences in a separate HashMap.

* Source/WebKit/Shared/AuxiliaryProcess.h:
* Source/WebKit/Shared/AuxiliaryProcess.messages.in:
* Source/WebKit/Shared/Cocoa/AuxiliaryProcessCocoa.mm:
(WebKit::AuxiliaryProcess::preferencesDidUpdate):
* Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp:
(WebKit::AuxiliaryProcessProxy::didChangeThrottleState):
* Source/WebKit/UIProcess/AuxiliaryProcessProxy.h:
* Source/WebKit/UIProcess/Cocoa/AuxiliaryProcessProxyCocoa.mm:
(WebKit::AuxiliaryProcessProxy::notifyPreferencesChanged):

Canonical link: https://commits.webkit.org/277514@main


  Commit: a66b8dac4cca3f9c9236fe49cfb0c03e683e353c
  
https://github.com/WebKit/WebKit/commit/a66b8dac4cca3f9c9236fe49cfb0c03e683e353c
  Author: Yijia Huang 
  Date:   2024-04-16 (Tue, 16 Apr 2024)

  Changed paths:
M Source/JavaScriptCore/CMakeLists.txt
M Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
M Source/JavaScriptCore/Sources.txt
M Source/JavaScriptCore/runtime/CachedTypes.cpp
A Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp
R Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp.in
M Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.h
M Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
M Source/WTF/wtf/spi/darwin/dyldSPI.h

  Log Message:
  ---
  Cherry-pick eff5765b8477. rdar://126195542

[JSC] Use JavaScriptCore framework dyld UUID for computing bytecode cache 
version
https://bugs.webkit.org/show_bug.cgi?id=272660
rdar://126195542

Reviewed by Yusuke Suzuki.

Previously, we used the JSCBuiltins.o, CachedTypes.o, and project source 
version
number for computing JSC bytecode cache version. That may not strong enough
to reject a stale bytecode cache. This patch utilizes 
JavaScriptCore.framework’s
UUID to compute the bytecode cache hash version for Darwin OSes and uses
__TIMESTAMP__ for the others.

* Source/JavaScriptCore/CMakeLists.txt:
* Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:
* Source/JavaScriptCore/Sources.txt:
* Source/JavaScriptCore/runtime/CachedTypes.cpp:
(JSC::GenericCacheEntry::GenericCacheEntry):
(JSC::GenericCacheEntry::isUpToDate const):
* Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp: Added.
(JSC::computeJSCBytecodeCacheVersion):
* Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp.in: Removed.
* Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.h:

Canonical link: https://commits.webkit.org/277548@main


  Commit: dfdaa2bacaeab99d2945d1081727c922e4dcb09e
  
https://github.com/WebKit/WebKit/commit/dfdaa2bacaeab99d2945d1081727c922e4dcb09e
  Author: Mohsin Qureshi 
  Date:   2024-04-16 (Tue, 16 Apr 2024)

  Changed paths:
M Source/JavaScriptCore/CMakeLists.txt
M Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
M Source/JavaScriptCore/Sources.txt
M Source/JavaScriptCore/runtime/CachedTypes.cpp
R Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp
A Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.cpp.in
M Source/JavaScriptCore/runtime/JSCBytecodeCacheVersion.h
M Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
M Source/WTF/wtf/spi/darwin/dyldSPI.h

  Log Message:
  ---
  Revert "[JSC] Use Java

[webkit-changes] [WebKit/WebKit]

2024-05-14 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.2.11-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-05-14 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.2.9-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-05-14 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.2.4-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2024-05-14 Thread WebKit-Jenner
  Branch: refs/heads/safari-7618.2.8-branch
  Home:   https://github.com/WebKit/WebKit

To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] c216b0: [GARDENING]Attempt #5 enable more tests in site-is...

2024-05-13 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: c216b092880be458c194cc499c7c2252140f64a3
  
https://github.com/WebKit/WebKit/commit/c216b092880be458c194cc499c7c2252140f64a3
  Author: Robert Jenner 
  Date:   2024-05-13 (Mon, 13 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [GARDENING]Attempt #5 enable more tests in site-isolation
https://bugs.webkit.org/show_bug.cgi?id=273715
rdar://127515199

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/278703@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 4f0b01: [GARDENING][ iOS, Mac x86_64 WK2 ] svg/filters/fil...

2024-05-08 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 4f0b01dd2ae927ed4ce68f33940b7a688a45205d
  
https://github.com/WebKit/WebKit/commit/4f0b01dd2ae927ed4ce68f33940b7a688a45205d
  Author: Robert Jenner 
  Date:   2024-05-08 (Wed, 08 May 2024)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [GARDENING][ iOS, Mac x86_64 WK2 ] 
svg/filters/filter-on-root-tile-boundary.html is a flaky ImageOnlyFailure
rdar://127767671
https://bugs.webkit.org/show_bug.cgi?id=273905

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:
* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/278533@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 22dd03: [Gardening][site-isolation] Attempt #4 Enable more...

2024-05-08 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 22dd0322f70233409d67384227e67bbd909d8056
  
https://github.com/WebKit/WebKit/commit/22dd0322f70233409d67384227e67bbd909d8056
  Author: Robert Jenner 
  Date:   2024-05-08 (Wed, 08 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [Gardening][site-isolation] Attempt #4 Enable more tests to run in 
site-isolation
rdar://127515199
https://bugs.webkit.org/show_bug.cgi?id=273715

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/278516@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 79f135: [Gardening] [site-isolation] Attempt #3 of enable ...

2024-05-07 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 79f1358b8b0d57bc038bd5046e4a41dc2db6b7e0
  
https://github.com/WebKit/WebKit/commit/79f1358b8b0d57bc038bd5046e4a41dc2db6b7e0
  Author: Robert Jenner 
  Date:   2024-05-07 (Tue, 07 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [Gardening] [site-isolation] Attempt #3 of enable more tests to run in 
site-isolation rdar://127515199 https://bugs.webkit.org/show_bug.cgi?id=273715
https://bugs.webkit.org/show_bug.cgi?id=273715
rdar://127515199

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/278466@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 68b1f5: [REBASELINE][ Monterey Ventura wk2 ] scrollingcoor...

2024-05-06 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 68b1f542c3f0df759643601c37c098d8ff66b69b
  
https://github.com/WebKit/WebKit/commit/68b1f542c3f0df759643601c37c098d8ff66b69b
  Author: Robert Jenner 
  Date:   2024-05-06 (Mon, 06 May 2024)

  Changed paths:
A 
LayoutTests/platform/mac-ventura-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-overflow-in-iframe-expected.txt
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [REBASELINE][ Monterey Ventura wk2 ] 
scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-overflow-in-iframe.html
 is a constant text failure.
rdar://77679410
https://bugs.webkit.org/show_bug.cgi?id=225529

Unreviewed test gardening.

Rebase of test for Ventura WK2.

* 
LayoutTests/platform/mac-ventura-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-overflow-in-iframe-expected.txt:
 Added.
* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/278431@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 8e104a: [GARDENING] Batch remove no longer needed test exp...

2024-05-06 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 8e104a1a51a7e71972fa610fbe42c6528210f7c0
  
https://github.com/WebKit/WebKit/commit/8e104a1a51a7e71972fa610fbe42c6528210f7c0
  Author: Robert Jenner 
  Date:   2024-05-06 (Mon, 06 May 2024)

  Changed paths:
R LayoutTests/platform/mac-monterey-wk1/TestExpectations
R 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/composited-iframe-with-fixed-background-doc-repaint-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/compositing-iframe-scroll-repaint-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/compositing-iframe-with-fixed-background-doc-repaint-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/editing/inserting/caret-position-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/editing/mac/input/firstrectforcharacterrange-styled-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/http/tests/security/xss-DENIED-xsl-external-entity-no-logging-expected.txt
R 
LayoutTests/platform/mac-monterey-wk1/imported/w3c/web-platform-tests/cookies/value/value-ctl-expected.txt
R LayoutTests/platform/mac-monterey-wk2/TestExpectations
R LayoutTests/platform/mac-monterey-wk2/fast/repaint/4776765-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/http/tests/workers/service/openwindow-from-notification-click-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/cookie-store/encoding.https.any.serviceworker-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/fetch/content-length/api-and-duplicate-headers.any-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/fetch/content-length/api-and-duplicate-headers.any.worker-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/notifications/idlharness.https.any.sharedworker-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/inspector/canvas/recording-offscreen-webgl-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-nested-non-cb-overflow-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-nested-overflow-expected.txt
R 
LayoutTests/platform/mac-monterey-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-nested-overflow2-expected.txt
M LayoutTests/platform/mac-wk1/TestExpectations
M LayoutTests/platform/mac-wk2/TestExpectations
M LayoutTests/platform/mac/TestExpectations

  Log Message:
  ---
  [GARDENING] Batch remove no longer needed test expectations
https://bugs.webkit.org/show_bug.cgi?id=273787
rdar://127616892

Unreviewed test gardening.

Removing expectations no longer needed.

* LayoutTests/platform/mac-monterey-wk1/TestExpectations: Removed.
* 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/composited-iframe-with-fixed-background-doc-repaint-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/compositing-iframe-scroll-repaint-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/compositing/repaint/iframes/compositing-iframe-with-fixed-background-doc-repaint-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/editing/inserting/caret-position-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/editing/mac/input/firstrectforcharacterrange-styled-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/http/tests/security/xss-DENIED-xsl-external-entity-no-logging-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk1/imported/w3c/web-platform-tests/cookies/value/value-ctl-expected.txt:
 Removed.
* LayoutTests/platform/mac-monterey-wk2/TestExpectations: Removed.
* LayoutTests/platform/mac-monterey-wk2/fast/repaint/4776765-expected.txt: 
Removed.
* 
LayoutTests/platform/mac-monterey-wk2/http/tests/workers/service/openwindow-from-notification-click-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/cookie-store/encoding.https.any.serviceworker-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/fetch/content-length/api-and-duplicate-headers.any-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/fetch/content-length/api-and-duplicate-headers.any.worker-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/imported/w3c/web-platform-tests/notifications/idlharness.https.any.sharedworker-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/inspector/canvas/recording-offscreen-webgl-expected.txt:
 Removed.
* 
LayoutTests/platform/mac-monterey-wk2/scrollingcoordinator/mac/fixed-backgrounds/fixed-background-in-nested-non-cb-overflow-expected.txt:
 Removed.
* 
LayoutTests

[webkit-changes] [WebKit/WebKit] 2ad095: [GARDENING] Umbrella bug for flaky test failures i...

2024-05-06 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 2ad0955e730e52ba57e654395e808610ddee9b2e
  
https://github.com/WebKit/WebKit/commit/2ad0955e730e52ba57e654395e808610ddee9b2e
  Author: Robert Jenner 
  Date:   2024-05-06 (Mon, 06 May 2024)

  Changed paths:
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [GARDENING] Umbrella bug for flaky test failures impacting EWS
rdar://122560532
https://bugs.webkit.org/show_bug.cgi?id=269003

Unreviewed test gardening.

Removing no longer needed expectations.

* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/278415@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 1cf271: [Gardening] [site-isolation] Attempt #2 of enable ...

2024-05-03 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 1cf2718c2e3c8760365235b7b2f537692c64baec
  
https://github.com/WebKit/WebKit/commit/1cf2718c2e3c8760365235b7b2f537692c64baec
  Author: Robert Jenner 
  Date:   2024-05-03 (Fri, 03 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [Gardening] [site-isolation] Attempt #2 of enable more tests to run in 
site-isolation
rdar://127515199
https://bugs.webkit.org/show_bug.cgi?id=273715

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/278367@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 603edf: [Gardening][ Site-Isolation ] Enable more tests to...

2024-05-03 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 603edf08c9a2be2387cdd44241a9ef4628274bd9
  
https://github.com/WebKit/WebKit/commit/603edf08c9a2be2387cdd44241a9ef4628274bd9
  Author: Robert Jenner 
  Date:   2024-05-03 (Fri, 03 May 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [Gardening][ Site-Isolation ] Enable more tests to run in site-isolation]
https://bugs.webkit.org/show_bug.cgi?id=273715
rdar://127515199

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/278349@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] d0941d: Remove no longer needed testing infrastructure fro...

2024-05-01 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: d0941d28f74c55fcfbcd60f512740b321d5611c7
  
https://github.com/WebKit/WebKit/commit/d0941d28f74c55fcfbcd60f512740b321d5611c7
  Author: Robert Jenner 
  Date:   2024-05-01 (Wed, 01 May 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories_unittest.py
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js
M Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css
M Tools/CISupport/build-webkit-org/steps_unittest.py

  Log Message:
  ---
  Remove no longer needed testing infrastructure from post-commit OpenSource
rdar://127372525
https://bugs.webkit.org/show_bug.cgi?id=273562

Reviewed by Ryan Haddad.

This fix removes no longer needed testing infrastructure from the 
configuration. It also adds Ventura JSC testers.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js:
* Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css:
(table.queue-grid tr.platform.macos-monterey img.logo): Deleted.
* Tools/CISupport/build-webkit-org/steps_unittest.py:

Canonical link: https://commits.webkit.org/278238@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 509ae3: Update device used for watchOS Simulator testing.

2024-04-30 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 509ae35fbb41a2b13700c8527816a5750fd07c9f
  
https://github.com/WebKit/WebKit/commit/509ae35fbb41a2b13700c8527816a5750fd07c9f
  Author: Robert Jenner 
  Date:   2024-04-30 (Tue, 30 Apr 2024)

  Changed paths:
M Tools/Scripts/webkitpy/port/watch_simulator.py

  Log Message:
  ---
  Update device used for watchOS Simulator testing.
https://bugs.webkit.org/show_bug.cgi?id=273440
rdar://127257478

Reviewed by Jonathan Bedard.

Adding watch Series 9 to test with to support testing on 41mm and 45mm display 
sizes.

* Tools/Scripts/webkitpy/port/watch_simulator.py:
(WatchSimulatorPort):

Canonical link: https://commits.webkit.org/278177@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 914621: Unreviewed, reverting 275551@main

2024-03-01 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 91462164b1315831afbd066050f1a6098f702485
  
https://github.com/WebKit/WebKit/commit/91462164b1315831afbd066050f1a6098f702485
  Author: Robert Jenner 
  Date:   2024-03-01 (Fri, 01 Mar 2024)

  Changed paths:
M Source/WebKit/Sources.txt
M Source/WebKit/UIProcess/AuxiliaryProcessProxy.h
M Source/WebKit/UIProcess/BrowsingContextGroup.cpp
M Source/WebKit/UIProcess/BrowsingContextGroup.h
R Source/WebKit/UIProcess/FrameProcess.cpp
R Source/WebKit/UIProcess/FrameProcess.h
M Source/WebKit/UIProcess/ProvisionalFrameProxy.cpp
M Source/WebKit/UIProcess/ProvisionalFrameProxy.h
M Source/WebKit/UIProcess/ProvisionalPageProxy.cpp
M Source/WebKit/UIProcess/ProvisionalPageProxy.h
M Source/WebKit/UIProcess/RemotePageProxy.cpp
M Source/WebKit/UIProcess/RemotePageProxy.h
A Source/WebKit/UIProcess/RemotePageProxyState.h
M Source/WebKit/UIProcess/SuspendedPageProxy.cpp
M Source/WebKit/UIProcess/SuspendedPageProxy.h
M Source/WebKit/UIProcess/WebFrameProxy.cpp
M Source/WebKit/UIProcess/WebFrameProxy.h
M Source/WebKit/UIProcess/WebPageProxy.cpp
M Source/WebKit/UIProcess/WebPageProxy.h
M Source/WebKit/UIProcess/WebPageProxyInternals.h
M Source/WebKit/UIProcess/WebProcessPool.cpp
M Source/WebKit/UIProcess/WebProcessPool.h
M Source/WebKit/WebKit.xcodeproj/project.pbxproj
M Tools/TestWebKitAPI/Tests/WebKitCocoa/SiteIsolation.mm

  Log Message:
  ---
  Unreviewed, reverting 275551@main
https://bugs.webkit.org/show_bug.cgi?id=270384
rdar://123925831

REGRESSION(275551@main): 3X API-Tests broke across all testing queues, 15X 
Layout-tests are now broken on site-isolation queues

Reverted change:

Clean up site isolation process selection logic
https://bugs.webkit.org/show_bug.cgi?id=270045
rdar://116202371
https://commits.webkit.org/275551@main

Canonical link: https://commits.webkit.org/275585@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 43b3b6: Unreviewed, reverting 275497@main

2024-02-29 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 43b3b6083421ace5d662331fedcbeb7ddd4cd71b
  
https://github.com/WebKit/WebKit/commit/43b3b6083421ace5d662331fedcbeb7ddd4cd71b
  Author: Robert Jenner 
  Date:   2024-02-29 (Thu, 29 Feb 2024)

  Changed paths:
M Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp
M Source/WebKit/UIProcess/AuxiliaryProcessProxy.h
M Source/WebKit/UIProcess/GPU/GPUProcessProxy.cpp
M Source/WebKit/UIProcess/GPU/GPUProcessProxy.h
M Source/WebKit/UIProcess/Model/ModelProcessProxy.cpp
M Source/WebKit/UIProcess/Model/ModelProcessProxy.h
M Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp
M Source/WebKit/UIProcess/Network/NetworkProcessProxy.h
M Source/WebKit/UIProcess/ProcessThrottler.cpp
M Source/WebKit/UIProcess/WebProcessProxy.cpp
M Source/WebKit/UIProcess/WebProcessProxy.h
M Source/WebKit/UIProcess/ios/WebProcessProxyIOS.mm

  Log Message:
  ---
  Unreviewed, reverting 275497@main
https://bugs.webkit.org/show_bug.cgi?id=270308
rdar://123845724

"Broke multiple builds"

Reverted change:

Move ProcessThrottler to AuxiliaryProcessProxy
https://bugs.webkit.org/show_bug.cgi?id=269136
rdar://122708925
https://commits.webkit.org/275497@main

Canonical link: https://commits.webkit.org/275507@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] fd87ee: [ GARDENING ][ Ventura Debug WK2 arm64 EWS ] http/...

2024-02-14 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: fd87eec432d83a2d84a4ba79995f856207f9583d
  
https://github.com/WebKit/WebKit/commit/fd87eec432d83a2d84a4ba79995f856207f9583d
  Author: Robert Jenner 
  Date:   2024-02-14 (Wed, 14 Feb 2024)

  Changed paths:
M LayoutTests/platform/mac-ventura/TestExpectations

  Log Message:
  ---
  [ GARDENING ][ Ventura Debug WK2 arm64 EWS ] 
http/tests/media/hls/track-in-band-multiple-cues.html is crashing
rdar://122967706
https://bugs.webkit.org/show_bug.cgi?id=269403

Unreviewed test gardening.

* LayoutTests/platform/mac-ventura/TestExpectations:

Canonical link: https://commits.webkit.org/274657@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 15c9f0: [GARDENING]Umbrella bug for flaky test failures im...

2024-02-08 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 15c9f05e211548bf7b068582254fd64026684d9c
  
https://github.com/WebKit/WebKit/commit/15c9f05e211548bf7b068582254fd64026684d9c
  Author: Robert Jenner 
  Date:   2024-02-08 (Thu, 08 Feb 2024)

  Changed paths:
M LayoutTests/platform/mac-wk2/TestExpectations

  Log Message:
  ---
  [GARDENING]Umbrella bug for flaky test failures impacting EWS
rdar://122560532
https://bugs.webkit.org/show_bug.cgi?id=269003

Unreviewed test gardening.

* LayoutTests/platform/mac-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/274317@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 7bd387: Unreviewed, reverting 269567@main

2024-01-31 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 7bd387350966076fad205c542d88e920a5c3ec60
  
https://github.com/WebKit/WebKit/commit/7bd387350966076fad205c542d88e920a5c3ec60
  Author: Robert Jenner 
  Date:   2024-01-31 (Wed, 31 Jan 2024)

  Changed paths:
M Source/WebCore/PAL/pal/spi/cocoa/VisionKitCoreSPI.h

  Log Message:
  ---
  Unreviewed, reverting 269567@main
https://bugs.webkit.org/show_bug.cgi?id=263419
rdar://117231568

Temporarily disable -Wobjc-property-no-attribute during VisionKitCore.h import

Reverted change:

Temporarily disable -Wobjc-property-no-attribute during VisionKitCore.h import
rdar://117231568
https://bugs.webkit.org/show_bug.cgi?id=263419
https://commits.webkit.org/269567@main

Canonical link: https://commits.webkit.org/273847@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 02e607: Unreviewed, reverting 273781@main

2024-01-30 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 02e607c262c22c99d785670804a70026c1c5c179
  
https://github.com/WebKit/WebKit/commit/02e607c262c22c99d785670804a70026c1c5c179
  Author: Robert Jenner 
  Date:   2024-01-30 (Tue, 30 Jan 2024)

  Changed paths:
M Source/WTF/Scripts/Preferences/UnifiedWebPreferences.yaml

  Log Message:
  ---
  Unreviewed, reverting 273781@main
https://bugs.webkit.org/show_bug.cgi?id=242921
rdar://97630072

[Cocoa] Enable WebRTC HEVC

Reverted change:

[Cocoa] Enable WebRTC HEVC
https://bugs.webkit.org/show_bug.cgi?id=242921
rdar://97630072
https://commits.webkit.org/273781@main

Canonical link: https://commits.webkit.org/273790@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 10fba3: [GARDENING]Add more expectations to site isolation

2024-01-24 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 10fba3f4e35c6953735d213df8d73b9dde09659e
  
https://github.com/WebKit/WebKit/commit/10fba3f4e35c6953735d213df8d73b9dde09659e
  Author: Robert Jenner 
  Date:   2024-01-24 (Wed, 24 Jan 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  [GARDENING]Add more expectations to site isolation
https://bugs.webkit.org/show_bug.cgi?id=268049
rdar://121565791

Unreviewed test gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/273459@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 8343db: Build for Apple Silicon for EWS

2024-01-23 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 8343db4cbb469d4f12731d839d64545d264e44a6
  
https://github.com/WebKit/WebKit/commit/8343db4cbb469d4f12731d839d64545d264e44a6
  Author: Robert Jenner 
  Date:   2024-01-23 (Tue, 23 Jan 2024)

  Changed paths:
M Tools/CISupport/ews-build/config.json

  Log Message:
  ---
  Build for Apple Silicon for EWS
https://bugs.webkit.org/show_bug.cgi?id=267927
rdar://121446379

Reviewed by Jonathan Bedard.

Building for Apple Silicon architecture in EWS so we can test on Apple Silicon 
in the future.

* Tools/CISupport/ews-build/config.json:

Canonical link: https://commits.webkit.org/273364@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] eb27bf: Unreviewed, reverting 273239@main

2024-01-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: eb27bffdc29667fe59786422cdd2e9868d72bbbc
  
https://github.com/WebKit/WebKit/commit/eb27bffdc29667fe59786422cdd2e9868d72bbbc
  Author: Robert Jenner 
  Date:   2024-01-19 (Fri, 19 Jan 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  Unreviewed, reverting 273239@main
https://bugs.webkit.org/show_bug.cgi?id=267783
rdar://121281377

Adjust expectations in site isolation

Reverted change:

Adjust expectations in site isolation
https://bugs.webkit.org/show_bug.cgi?id=267783
rdar://121281377
https://commits.webkit.org/273239@main

Canonical link: https://commits.webkit.org/273249@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] ed4c80: Adjust expectations in site isolation

2024-01-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: ed4c804b97b121c4af693c0345eb5b258231ae3b
  
https://github.com/WebKit/WebKit/commit/ed4c804b97b121c4af693c0345eb5b258231ae3b
  Author: Robert Jenner 
  Date:   2024-01-19 (Fri, 19 Jan 2024)

  Changed paths:
M LayoutTests/platform/mac-site-isolation/TestExpectations

  Log Message:
  ---
  Adjust expectations in site isolation
https://bugs.webkit.org/show_bug.cgi?id=267783
rdar://121281377

Unreviewed Test Gardening.

* LayoutTests/platform/mac-site-isolation/TestExpectations:

Canonical link: https://commits.webkit.org/273239@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] d905fc: Bring up a queue to test run-webkit-tests --site-i...

2024-01-18 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: d905fc0e6eeb59d96025dfd9ada0cb8b8cbbd5ee
  
https://github.com/WebKit/WebKit/commit/d905fc0e6eeb59d96025dfd9ada0cb8b8cbbd5ee
  Author: Robert Jenner 
  Date:   2024-01-18 (Thu, 18 Jan 2024)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories_unittest.py

  Log Message:
  ---
  Bring up a queue to test run-webkit-tests --site-isolation
rdar://119899034
https://bugs.webkit.org/show_bug.cgi?id=267309

Reviewed by Jonathan Bedard.

Config changes to bring up an individual site isolation queue.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/factories_unittest.py:
(TestExpectedBuildSteps):

Canonical link: https://commits.webkit.org/273197@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 58ebd8: Add site isolation as its own reporting flavor

2024-01-18 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 58ebd825b562137539b6906c5e5bf99c942a59bd
  
https://github.com/WebKit/WebKit/commit/58ebd825b562137539b6906c5e5bf99c942a59bd
  Author: Robert Jenner 
  Date:   2024-01-18 (Thu, 18 Jan 2024)

  Changed paths:
M Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

  Log Message:
  ---
  Add site isolation as its own reporting flavor
https://bugs.webkit.org/show_bug.cgi?id=267719
rdar://121208626

Reviewed by Jonathan Bedard.

This adds site isolation as its own reporting flavor to separate it from other 
test results.

* Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py:
(_set_up_derived_options):

Canonical link: https://commits.webkit.org/273195@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] de7879: Remove iOS 16 test expectation folders

2024-01-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: de7879af240cf3d80caf780b9965e0e66fe631fd
  
https://github.com/WebKit/WebKit/commit/de7879af240cf3d80caf780b9965e0e66fe631fd
  Author: Robert Jenner 
  Date:   2024-01-12 (Fri, 12 Jan 2024)

  Changed paths:
R LayoutTests/platform/ios-16/TestExpectations
R LayoutTests/platform/ios-16/fast/css/rtl-ordering-expected.txt
R LayoutTests/platform/ios-16/fast/forms/select-visual-hebrew-expected.txt
R 
LayoutTests/platform/ios-16/fast/forms/select-writing-direction-natural-expected.txt
R 
LayoutTests/platform/ios-16/fast/forms/time/time-input-rendering-basic-expected.txt
R LayoutTests/platform/ios-16/fast/overflow/infiniteRecursion-expected.txt
R LayoutTests/platform/ios-16/fast/text/drawBidiText-expected.txt
R 
LayoutTests/platform/ios-16/fast/text/international/bidi-listbox-atsui-expected.txt
R 
LayoutTests/platform/ios-16/fast/text/international/bidi-listbox-expected.txt
R 
LayoutTests/platform/ios-16/fast/text/international/bidi-menulist-expected.txt
R 
LayoutTests/platform/ios-16/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt
R 
LayoutTests/platform/ios-16/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt
R LayoutTests/platform/ios-16/svg/custom/svg-fonts-in-html-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/border-writing-mode-dynamic-001-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/table-model-fixup-2-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/baseline-td-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/rowspan-height-redistribution-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/table-height-redistribution-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/tbody-height-redistribution-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/visibility-collapse-rowspan-002-border-separate-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/visibility-collapse-rowspan-002-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/visibility-collapse-rowspan-003-border-separate-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/visibility-collapse-rowspan-003-expected.txt
R 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/visibility-collapse-rowspan-004-dynamic-expected.txt

  Log Message:
  ---
  Remove iOS 16 test expectation folders
https://bugs.webkit.org/show_bug.cgi?id=267456
rdar://120910185

Unreviewed platform test expectations management.

* LayoutTests/platform/ios-16/TestExpectations: Removed.
* LayoutTests/platform/ios-16/fast/css/rtl-ordering-expected.txt: Removed.
* LayoutTests/platform/ios-16/fast/forms/select-visual-hebrew-expected.txt: 
Removed.
* 
LayoutTests/platform/ios-16/fast/forms/select-writing-direction-natural-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-16/fast/forms/time/time-input-rendering-basic-expected.txt:
 Removed.
* LayoutTests/platform/ios-16/fast/overflow/infiniteRecursion-expected.txt: 
Removed.
* LayoutTests/platform/ios-16/fast/text/drawBidiText-expected.txt: Removed.
* 
LayoutTests/platform/ios-16/fast/text/international/bidi-listbox-atsui-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-16/fast/text/international/bidi-listbox-expected.txt: 
Removed.
* 
LayoutTests/platform/ios-16/fast/text/international/bidi-menulist-expected.txt: 
Removed.
* 
LayoutTests/platform/ios-16/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-16/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
 Removed.
* LayoutTests/platform/ios-16/svg/custom/svg-fonts-in-html-expected.txt: 
Removed.
* 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/border-writing-mode-dynamic-001-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/table-model-fixup-2-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/baseline-td-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css/css-tables/tentative/rowspan-height-redistribution-expected.txt:
 Removed.
* 
LayoutTests/platform/ios-simulator-16-wk2/imported/w3c/web-platform-tests/css

[webkit-changes] [WebKit/WebKit] 28ce6a: [REBASELINE]REGRESSION(271897@main): [ iOS17 ] imp...

2023-12-21 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 28ce6af73aaf61ff4622cd46d37b6097c85bbac8
  
https://github.com/WebKit/WebKit/commit/28ce6af73aaf61ff4622cd46d37b6097c85bbac8
  Author: Robert Jenner 
  Date:   2023-12-21 (Thu, 21 Dec 2023)

  Changed paths:
M 
LayoutTests/platform/ios/imported/w3c/web-platform-tests/css/css-cascade/scope-hover-expected.txt

  Log Message:
  ---
  [REBASELINE]REGRESSION(271897@main): [ iOS17 ] 
imported/w3c/web-platform-tests/css/css-cascade/scope-hover.html is a constant 
text failure
rdar://119882318
https://bugs.webkit.org/show_bug.cgi?id=266652

Unreviewed test gardening.

* 
LayoutTests/platform/ios/imported/w3c/web-platform-tests/css/css-cascade/scope-hover-expected.txt:

Canonical link: https://commits.webkit.org/272422@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 55ea54: [REBASELINE]REGRESSION(271897@main): [ iOS17 ] imp...

2023-12-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 55ea54a2ae622f3a6b3b4666d3ca0815ac41a029
  
https://github.com/WebKit/WebKit/commit/55ea54a2ae622f3a6b3b4666d3ca0815ac41a029
  Author: Robert Jenner 
  Date:   2023-12-20 (Wed, 20 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations
A 
LayoutTests/platform/ios/imported/w3c/web-platform-tests/css/css-cascade/scope-hover-expected.txt

  Log Message:
  ---
  [REBASELINE]REGRESSION(271897@main): [ iOS17 ] 
imported/w3c/web-platform-tests/css/css-cascade/scope-hover.html is a constant 
text failure
rdar://119882318
https://bugs.webkit.org/show_bug.cgi?id=266652

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:
* 
LayoutTests/platform/ios/imported/w3c/web-platform-tests/css/css-cascade/scope-hover-expected.txt:
 Added.

Canonical link: https://commits.webkit.org/272395@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 9a87fd: REBASELINE: [ iOS15+ ] imported/w3c/web-platform-t...

2023-12-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 9a87fd65691aa55ece08899c0cfc3dcd60fa130d
  
https://github.com/WebKit/WebKit/commit/9a87fd65691aa55ece08899c0cfc3dcd60fa130d
  Author: Robert Jenner 
  Date:   2023-12-20 (Wed, 20 Dec 2023)

  Changed paths:
R 
LayoutTests/platform/ios-wk2/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt

  Log Message:
  ---
  REBASELINE: [ iOS15+ ] 
imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly.html
 is a constant text failure
rdar://119900509
https://bugs.webkit.org/show_bug.cgi?id=266672

Reviewed by Tim Nguyen.

Removing an improerly set baseline for iOS that is causing this test to 
constantly fail.

* 
LayoutTests/platform/ios-wk2/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt:
 Removed.

Canonical link: https://commits.webkit.org/272393@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] ccbbc0: [GARDENING]REGRESSION(271863@main): imported/w3c/w...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: ccbbc011cb239c7499a26e62f63a3d4c06aa9b04
  
https://github.com/WebKit/WebKit/commit/ccbbc011cb239c7499a26e62f63a3d4c06aa9b04
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING]REGRESSION(271863@main): 
imported/w3c/web-platform-tests/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html
 is a flaky text failure
https://bugs.webkit.org/show_bug.cgi?id=29
rdar://119899602

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272312@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 1fb550: [GARDENING]REGRESSION(271428@main): [ iOS 17 ] imp...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 1fb5505e86e16bdff13c078b25383f42319aa906
  
https://github.com/WebKit/WebKit/commit/1fb5505e86e16bdff13c078b25383f42319aa906
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING]REGRESSION(271428@main): [ iOS 17 ] 
imported/w3c/web-platform-tests/html/semantics/invokers/invoketarget-button-event-dispatch.tentative.html
 is a constant text failure
https://bugs.webkit.org/show_bug.cgi?id=25
rdar://119897560

Unreviewed Test Gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272308@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] fe76e3: [GARDENING][ New Test ] (264228@main): [ iOS ] imp...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: fe76e3a49854a46c121dddf528085931ea76459a
  
https://github.com/WebKit/WebKit/commit/fe76e3a49854a46c121dddf528085931ea76459a
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING][ New Test ] (264228@main): [ iOS ] 
imported/w3c/web-platform-tests/html/semantics/disabled-elements/disabled-event-dispatch.tentative.html
 is a consistent failure
https://bugs.webkit.org/show_bug.cgi?id=259132
rdar://112109419

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272305@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 23ee7d: [GARDENING]RE-IMPORT(271918@main) 3X imported/w3c/...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 23ee7d493e192c662fe09d2a6c21310bbd69cf9d
  
https://github.com/WebKit/WebKit/commit/23ee7d493e192c662fe09d2a6c21310bbd69cf9d
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING]RE-IMPORT(271918@main) 3X 
imported/w3c/web-platform-tests/css/selectors (layout-tests) are constant text 
failures
https://bugs.webkit.org/show_bug.cgi?id=21
rdar://119894365

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272301@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] ef929c: [GARDNEING]NEW-TEST(270986@main):[ iOS17 ] 2X impo...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: ef929cdcbb994371ca99f88c8c0f0678730e5869
  
https://github.com/WebKit/WebKit/commit/ef929cdcbb994371ca99f88c8c0f0678730e5869
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDNEING]NEW-TEST(270986@main):[ iOS17 ] 2X 
imported/w3c/web-platform-tests/css/css-view-transitions/massive-element-below-viewport-partially-onscreen
 are constant ImageOnlyFailures
https://bugs.webkit.org/show_bug.cgi?id=20
rdar://119891914

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272300@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] d37520: [GARDNEING]REGRESSION(271897@main): [ iOS17 ] impo...

2023-12-19 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: d37520e80c58215a5fbd6486eeca26b2eacbdee7
  
https://github.com/WebKit/WebKit/commit/d37520e80c58215a5fbd6486eeca26b2eacbdee7
  Author: Robert Jenner 
  Date:   2023-12-19 (Tue, 19 Dec 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDNEING]REGRESSION(271897@main): [ iOS17 ] 
imported/w3c/web-platform-tests/css/css-cascade/scope-hover.html is a constant 
text failure
https://bugs.webkit.org/show_bug.cgi?id=266652
rdar://119882318

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/272298@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 236cc5: Unreviewed, reverting 271998@main

2023-12-13 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 236cc5b3746dde681f8eca64f7f1a66cd9b1a328
  
https://github.com/WebKit/WebKit/commit/236cc5b3746dde681f8eca64f7f1a66cd9b1a328
  Author: Robert Jenner 
  Date:   2023-12-13 (Wed, 13 Dec 2023)

  Changed paths:
M Source/WebKit/WebProcess/cocoa/WebProcessCocoa.mm

  Log Message:
  ---
  Unreviewed, reverting 271998@main
rdar://119629801
rdar://119629801

[ Build Failure ] revokeLaunchServicesSandboxExtension is an undeclared 
identifier

Reverted change:

Register application in the WebProcess on Catalyst
https://bugs.webkit.org/show_bug.cgi?id=266350
rdar://119217913
https://commits.webkit.org/271998@main

Canonical link: https://commits.webkit.org/272002@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] afc57f: Add arm64 to the Mac-release EWS builders

2023-12-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: afc57f4287c158b5b046d6e42b47a85735a8f1e8
  
https://github.com/WebKit/WebKit/commit/afc57f4287c158b5b046d6e42b47a85735a8f1e8
  Author: Robert Jenner 
  Date:   2023-12-12 (Tue, 12 Dec 2023)

  Changed paths:
M Tools/CISupport/ews-build/config.json

  Log Message:
  ---
  Add arm64 to the Mac-release EWS builders
https://bugs.webkit.org/show_bug.cgi?id=266313
rdar://119584370

Reviewed by Brian Weinstein and Ryan Haddad.

Adding arm64 architecture to build in EWS.

* Tools/CISupport/ews-build/config.json:

Canonical link: https://commits.webkit.org/271960@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617.1.16-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617.1.12-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617.1.14-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617.1.17-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit]

2023-12-11 Thread WebKit-Jenner
  Branch: refs/heads/safari-7617.1.11-branch
  Home:   https://github.com/WebKit/WebKit
___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 62e736: NEW-TEST(271524@main): [ macOS ] TestWebKitAPI.Mon...

2023-12-08 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 62e7362b103fda09d3141dfff088c655a45fccae
  
https://github.com/WebKit/WebKit/commit/62e7362b103fda09d3141dfff088c655a45fccae
  Author: Robert Jenner 
  Date:   2023-12-08 (Fri, 08 Dec 2023)

  Changed paths:
M Tools/TestWebKitAPI/Tests/WebCore/MonospaceFontTests.cpp

  Log Message:
  ---
  NEW-TEST(271524@main): [ macOS ] 
TestWebKitAPI.MonospaceFontsTest.EnsureMonospaceFontInvariants is a flaky 
failure
https://bugs.webkit.org/show_bug.cgi?id=266102
rdar://119399924

Unreviewed test gardening.

Disabling failing API-Test that is having a negative impact on EWS.

* Tools/TestWebKitAPI/Tests/WebCore/MonospaceFontTests.cpp:
(TestWebKitAPI::TEST):

Canonical link: https://commits.webkit.org/271767@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] a54075: [ iOS EWS ] 2X TestWebKitAPI.ServiceWorker.WindowC...

2023-12-07 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: a54075c47ad26b8a9b9aa7d303c1262ffc7c4533
  
https://github.com/WebKit/WebKit/commit/a54075c47ad26b8a9b9aa7d303c1262ffc7c4533
  Author: Robert Jenner 
  Date:   2023-12-07 (Thu, 07 Dec 2023)

  Changed paths:
M Tools/TestWebKitAPI/Tests/WebKitCocoa/ServiceWorkerBasic.mm

  Log Message:
  ---
  [ iOS EWS ] 2X TestWebKitAPI.ServiceWorker.WindowClientNavigate (API-Tests) 
are flaky timeout
rdar://117758550
https://bugs.webkit.org/show_bug.cgi?id=263991

Unreviewed test gardneing.

Removing the disabled flag for these API-tests to verify a proposed fix.

* Tools/TestWebKitAPI/Tests/WebKitCocoa/ServiceWorkerBasic.mm:

Canonical link: https://commits.webkit.org/271702@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 97b134: [ iOS EWS ] 2X TestWebKitAPI.ServiceWorker.WindowC...

2023-11-01 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 97b134efc0bc63019c3be3d7db6f9b633088f7dc
  
https://github.com/WebKit/WebKit/commit/97b134efc0bc63019c3be3d7db6f9b633088f7dc
  Author: Robert Jenner 
  Date:   2023-11-01 (Wed, 01 Nov 2023)

  Changed paths:
M Tools/TestWebKitAPI/Tests/WebKitCocoa/ServiceWorkerBasic.mm

  Log Message:
  ---
  [ iOS EWS ] 2X TestWebKitAPI.ServiceWorker.WindowClientNavigate (API-Tests) 
are flaky timeouts
rdar://117758550
https://bugs.webkit.org/show_bug.cgi?id=263991

Unreviewed API-Test disable

Disabling these tests on iOS due to many flaky timeouts occurring on EWS, 
slowing it down and showing as false positives.

* Tools/TestWebKitAPI/Tests/WebKitCocoa/ServiceWorkerBasic.mm:

Canonical link: https://commits.webkit.org/270064@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 6c964a: [GARDENING][ Sonoma EWS ] Suppress failures on EWS...

2023-11-01 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 6c964a69a61d17ee057ecfd6d703efb4a3905402
  
https://github.com/WebKit/WebKit/commit/6c964a69a61d17ee057ecfd6d703efb4a3905402
  Author: Robert Jenner 
  Date:   2023-11-01 (Wed, 01 Nov 2023)

  Changed paths:
M LayoutTests/platform/mac/TestExpectations

  Log Message:
  ---
  [GARDENING][ Sonoma EWS ] Suppress failures on EWS to avoid false positives 
on patches
rdar://117800778
https://bugs.webkit.org/show_bug.cgi?id=264042

Unreviewed test gardening.

* LayoutTests/platform/mac/TestExpectations:

Canonical link: https://commits.webkit.org/270063@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 9f2abf: Bring up macOS Sonoma queues on EWS

2023-10-31 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 9f2abf8a320f6d816b75b8857c694905f19e22f2
  
https://github.com/WebKit/WebKit/commit/9f2abf8a320f6d816b75b8857c694905f19e22f2
  Author: Robert Jenner 
  Date:   2023-10-31 (Tue, 31 Oct 2023)

  Changed paths:
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories_unittest.py

  Log Message:
  ---
  Bring up macOS Sonoma queues on EWS
rdar://117710689
https://bugs.webkit.org/show_bug.cgi?id=263934

Reviewed by Jonathan Bedard.

We would like to support macOS Sonoma in EWS. This config change is to make 
that happen.

* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):

Canonical link: https://commits.webkit.org/270015@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 78ee0a: Revert [269795@main] Compile sandboxes for all SDKs

2023-10-26 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 78ee0acc6e86f689946238f6f70318a0c3138bbf
  
https://github.com/WebKit/WebKit/commit/78ee0acc6e86f689946238f6f70318a0c3138bbf
  Author: Robert Jenner 
  Date:   2023-10-26 (Thu, 26 Oct 2023)

  Changed paths:
M Source/WebKit/DerivedSources.make

  Log Message:
  ---
  Revert [269795@main] Compile sandboxes for all SDKs
https://bugs.webkit.org/show_bug.cgi?id=263411
rdar://117226564

Unreviewed revert.

* Source/WebKit/DerivedSources.make:

Canonical link: https://commits.webkit.org/269818@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 22c0e5: [GARDENING]REGRESSION(267683@main): [ iOS ] platfo...

2023-10-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 22c0e587abf7c45c527c54d4eedcc4d91fa5967a
  
https://github.com/WebKit/WebKit/commit/22c0e587abf7c45c527c54d4eedcc4d91fa5967a
  Author: Robert Jenner 
  Date:   2023-10-20 (Fri, 20 Oct 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING]REGRESSION(267683@main): [ iOS ] 
platform/ios/mediastream/getUserMedia-override-audio-session-interruption.html 
is a consistent text failure
rdar://117282117
https://bugs.webkit.org/show_bug.cgi?id=263479

Unreviewed test gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/269601@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] de1880: [GARDENING][ iOS 17 ] fast/forms/ios/keydown-in-hi...

2023-10-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: de1880cb581b882d8dfea380538d8a955583425e
  
https://github.com/WebKit/WebKit/commit/de1880cb581b882d8dfea380538d8a955583425e
  Author: Robert Jenner 
  Date:   2023-10-20 (Fri, 20 Oct 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING][ iOS 17 ] 
fast/forms/ios/keydown-in-hidden-contenteditable-with-inputmode-none.html is a 
flaky text failure
rdar://117279141
https://bugs.webkit.org/show_bug.cgi?id=263471

Unreviewed test gardneing.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/269597@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 7528a0: [GARDENING][ NEW-TEST iOS17 ] REGRESSION(269406@ma...

2023-10-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 7528a0a52c7e69422cb4ed549f0e5288a0bc5a4a
  
https://github.com/WebKit/WebKit/commit/7528a0a52c7e69422cb4ed549f0e5288a0bc5a4a
  Author: Robert Jenner 
  Date:   2023-10-20 (Fri, 20 Oct 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [GARDENING][ NEW-TEST iOS17 ] REGRESSION(269406@main): 
fast/mediastream/getDisplayMedia-max-constraints4.html is a constant text 
failure
rdar://117277037
https://bugs.webkit.org/show_bug.cgi?id=263466

Unreviewed test gardneing.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/269592@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 3aaea6: Temporarily disable -Wobjc-property-no-attribute d...

2023-10-20 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 3aaea6d3763aedfadd4f800c366d7cb9fd79a1ad
  
https://github.com/WebKit/WebKit/commit/3aaea6d3763aedfadd4f800c366d7cb9fd79a1ad
  Author: Robert Jenner 
  Date:   2023-10-20 (Fri, 20 Oct 2023)

  Changed paths:
M Source/WebCore/PAL/pal/spi/cocoa/VisionKitCoreSPI.h

  Log Message:
  ---
  Temporarily disable -Wobjc-property-no-attribute during VisionKitCore.h import
rdar://117231568
https://bugs.webkit.org/show_bug.cgi?id=263419

Reviewed by Elliott Williams.

It is anecdotally causing build failures with the internal SDK.

* Source/WebCore/PAL/pal/spi/cocoa/VisionKitCoreSPI.h:

Canonical link: https://commits.webkit.org/269567@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] c5710a: Follow-up fix for watchOS-10 builds

2023-10-13 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: c5710af1a849b2ec3d3a4985bb05543470d20830
  
https://github.com/WebKit/WebKit/commit/c5710af1a849b2ec3d3a4985bb05543470d20830
  Author: Robert Jenner 
  Date:   2023-10-13 (Fri, 13 Oct 2023)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json

  Log Message:
  ---
  Follow-up fix for watchOS-10 builds
rdar://116938817
https://bugs.webkit.org/show_bug.cgi?id=263143

Reviewed by Ryan Haddad.

Follow-up fix to bring up the watchOS 10 builders.

* Tools/CISupport/build-webkit-org/config.json:

Canonical link: https://commits.webkit.org/269326@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] f8d69a: [ Debug iOS, macOS ] imported/w3c/web-platform-tes...

2023-10-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: f8d69ab96275eeea571e61ccf836e6b641cb9e9f
  
https://github.com/WebKit/WebKit/commit/f8d69ab96275eeea571e61ccf836e6b641cb9e9f
  Author: Robert Jenner 
  Date:   2023-10-12 (Thu, 12 Oct 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations

  Log Message:
  ---
  [ Debug iOS, macOS ] 
imported/w3c/web-platform-tests/background-fetch/port-blocking.https.window.html
 is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=256217
rdar://108798120

Unreviewed tets gardening.

* LayoutTests/platform/ios/TestExpectations:

Canonical link: https://commits.webkit.org/269283@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 82b3e4: REGRESSION(iOS17): [ iOS 17 ] 5X http/tests/css/cs...

2023-10-12 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 82b3e4c30781ae0c144a65535b74128d0192c4ee
  
https://github.com/WebKit/WebKit/commit/82b3e4c30781ae0c144a65535b74128d0192c4ee
  Author: Robert Jenner 
  Date:   2023-10-12 (Thu, 12 Oct 2023)

  Changed paths:
M LayoutTests/http/tests/css/css-masking/mask-external-svg-fragment.html
M LayoutTests/http/tests/css/css-masking/mask-external-svg-image.html
M LayoutTests/http/tests/css/css-masking/mask-external-svg-mask.html
M LayoutTests/http/tests/css/css-masking/mask-inline-svg-image.html
M LayoutTests/http/tests/css/css-masking/mask-inline-svg-mask.html

  Log Message:
  ---
  REGRESSION(iOS17): [ iOS 17 ] 5X http/tests/css/css-masking/mask- 
(Layout-tests) are constant ImageOnlyFailures
rdar://116831359
https://bugs.webkit.org/show_bug.cgi?id=263041

Unreviewed test modification.

Pixel tolerance adjustment for tests with a .01% Image Failure on iOS 17.

* LayoutTests/http/tests/css/css-masking/mask-external-svg-fragment.html:
* LayoutTests/http/tests/css/css-masking/mask-external-svg-image.html:
* LayoutTests/http/tests/css/css-masking/mask-external-svg-mask.html:
* LayoutTests/http/tests/css/css-masking/mask-inline-svg-image.html:
* LayoutTests/http/tests/css/css-masking/mask-inline-svg-mask.html:

Canonical link: https://commits.webkit.org/269280@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 2e2029: Re-land Make config changes to bring up iOS17, tvO...

2023-10-11 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 2e20293b27e5a160b7bd185c648ed971fa543671
  
https://github.com/WebKit/WebKit/commit/2e20293b27e5a160b7bd185c648ed971fa543671
  Author: Robert Jenner 
  Date:   2023-10-11 (Wed, 11 Oct 2023)

  Changed paths:
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories_unittest.py

  Log Message:
  ---
  Re-land Make config changes to bring up iOS17, tvOS17, and watchOS10 on EWS
https://bugs.webkit.org/show_bug.cgi?id=262971
rdar://116751317

Reviewed by Ryan Haddad.

Re-land a prior revert to bring up iOS17, tvOS17, and watchOS10 on EWS.

* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):

Canonical link: https://commits.webkit.org/269215@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 308f62: Revert [269167@main] Make config changes to bring ...

2023-10-10 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 308f62a1401739c22439afcaeb6f45b7083c8bc6
  
https://github.com/WebKit/WebKit/commit/308f62a1401739c22439afcaeb6f45b7083c8bc6
  Author: Robert Jenner 
  Date:   2023-10-10 (Tue, 10 Oct 2023)

  Changed paths:
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories_unittest.py

  Log Message:
  ---
  Revert [269167@main] Make config changes to bring up iOS17, tvOS17, and 
watchOS10 on EWS
rdar://116751317
https://bugs.webkit.org/show_bug.cgi?id=262971

Unreviewed revert.

Landed config change too soon.

* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):

Canonical link: https://commits.webkit.org/269175@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 8ef0e3: Make config changes to bring up iOS17, tvOS17, and...

2023-10-10 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 8ef0e35d69a74f7bc62b758da20083d2f8f50d80
  
https://github.com/WebKit/WebKit/commit/8ef0e35d69a74f7bc62b758da20083d2f8f50d80
  Author: Robert Jenner 
  Date:   2023-10-10 (Tue, 10 Oct 2023)

  Changed paths:
M Tools/CISupport/ews-build/config.json
M Tools/CISupport/ews-build/factories_unittest.py

  Log Message:
  ---
  Make config changes to bring up iOS17, tvOS17, and watchOS10 on EWS
rdar://116751317
https://bugs.webkit.org/show_bug.cgi?id=262971

Reviewed by Ryan Haddad.

Config change to bring up iOS17, tvOS17, and watchOS10 in EWS.

* Tools/CISupport/ews-build/config.json:
* Tools/CISupport/ews-build/factories_unittest.py:
(TestExpectedBuildSteps):
* Tools/CISupport/ews-build/steps.py:
(PrintConfiguration.convert_build_to_os_name):

Canonical link: https://commits.webkit.org/269167@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] e4d009: [GARDENING]Add missing test expectations to Sonoma...

2023-10-03 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: e4d009084ee28d3e4f47a998dec1f5cf2f8f2a0d
  
https://github.com/WebKit/WebKit/commit/e4d009084ee28d3e4f47a998dec1f5cf2f8f2a0d
  Author: Robert Jenner 
  Date:   2023-10-03 (Tue, 03 Oct 2023)

  Changed paths:
M LayoutTests/platform/ios/TestExpectations
M LayoutTests/platform/mac-wk1/TestExpectations
M LayoutTests/platform/mac-wk2/TestExpectations
M LayoutTests/platform/mac/TestExpectations

  Log Message:
  ---
  [GARDENING]Add missing test expectations to Sonoma and iOS-17 platforms
https://bugs.webkit.org/show_bug.cgi?id=262392
rdar://116251442

Unreviewed Test Gardening.

* LayoutTests/platform/ios/TestExpectations:
* LayoutTests/platform/mac-wk1/TestExpectations:
* LayoutTests/platform/mac-wk2/TestExpectations:
* LayoutTests/platform/mac/TestExpectations:

Canonical link: https://commits.webkit.org/268797@main


___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [WebKit/WebKit] 3a939b: Bring up iOS 17, tvOS 17, watchOS 10, and Sonoma b...

2023-09-27 Thread Robert Jenner
  Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 3a939b2fd2b9fb408fa532401ff2655893b67616
  
https://github.com/WebKit/WebKit/commit/3a939b2fd2b9fb408fa532401ff2655893b67616
  Author: Robert Jenner 
  Date:   2023-09-27 (Wed, 27 Sep 2023)

  Changed paths:
M Tools/CISupport/build-webkit-org/config.json
M Tools/CISupport/build-webkit-org/factories_unittest.py
R Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS16.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS16Simulator.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS17Simulator.png
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOSDevice.png
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOSSimulator.png
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/Sonoma.png
R Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS16.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS16Simulator.png
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17Simulator.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS10.png
R Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS9.png
A 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator10.png
R 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator9.png
A Tools/CISupport/build-webkit-org/public_html/dashboard/Images/iOS17.png
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js
M 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js
M Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css
M Tools/CISupport/build-webkit-org/wkbuild.py
M Tools/CISupport/build-webkit-org/wkbuild_unittest.py
M Websites/webkit.org/wp-content/themes/webkit/build-archives.php

  Log Message:
  ---
  Bring up iOS 17, tvOS 17, watchOS 10, and Sonoma builders and testers
https://bugs.webkit.org/show_bug.cgi?id=262065
rdar://116012814

Reviewed by Ryan Haddad.

Config change to bring up Sonoma and friends in the OpenSource infrastructure.

* Tools/CISupport/build-webkit-org/config.json:
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS16.png: 
Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS16Simulator.png:
 Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS17Simulator.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOSDevice.png:
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOSSimulator.png:
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/Sonoma.png: 
Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS16.png: 
Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS16Simulator.png:
 Removed.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17.png: 
Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS17Simulator.png:
 Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS10.png: 
Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS9.png: 
Removed.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator10.png:
 Added.
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator9.png:
 Removed.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Images/iOS17.png: 
Added.
* Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js:
* 
Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/WebKitBuildbot.js:
(WebKitBuildbot):
* Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css:
(*):
(table.queue-grid tr.platform.ios-simulator-17 img.logo):
(table.queue-grid tr.platform.ios-17 img.logo):
(table.queue-grid tr.platform.tvos-simulator-17 img.logo):
(table.queue-grid tr.platform.tvos-17 img.logo):
(table.queue-grid tr.platform.watchos-simulator-10 img.logo):
(table.queue-grid tr.platform.watchos-10 img.logo):
(table.queue-grid tr.platform.macos-sonoma img.logo):
(table.queue-grid tr.platform.ios-simulator-16 img.logo): Deleted.
(table.queue-grid tr.platform.ios-16 img.logo): Deleted.
(table.queue-grid tr.platform.tvos-simulator-16 img.logo): Deleted.
(table.queue-grid tr.platform.tvos-16 img.logo): Deleted.
(table.queue-grid tr.platform.watchos-simulator-9 img.logo): Deleted.
(table.queue-grid tr.platform.watchos-9 img.logo): Deleted.
* Tools/CISupport/build-webkit-org/wkbuild.py:
(_should_file_trigger_build):
* Tools/CISupport/build-webkit-org/wkbuild_unittest.py:
(ShouldBuildTest):
(ShouldBuildTest.test_should_build):
* Websites/webkit.org/wp-content/themes

  1   2   3   4   5   6   >