[Webkit-unassigned] [Bug 279581] New: Remove Quirk triggerOptionalStorageAccessQuirk for domains not part of Kinja anymore
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Sep 11 23:42:43 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=279581
Bug ID: 279581
Summary: Remove Quirk triggerOptionalStorageAccessQuirk for
domains not part of Kinja anymore
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
URL: http://kinja.com/
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: WebKit Misc.
Assignee: webkit-unassigned at lists.webkit.org
Reporter: karlcow at apple.com
CC: webkit-bug-importer at group.apple.com
Depends on: 213418
On Bug 213418 / rdar://64549429 triggerOptionalStorageAccessQuirk was added in addition to isKinjaLoginAvatarElement Quirk
```
static NeverDestroyed<HashSet<RegistrableDomain>> kinjaQuirks = [] {
HashSet<RegistrableDomain> set;
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("avclub.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("deadspin.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("jalopnik.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("jezebel.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("kotaku.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("lifehacker.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("theroot.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("thetakeout.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("theonion.com"_s));
set.add(RegistrableDomain::uncheckedCreateFromRegistrableDomainString("theinventory.com"_s));
return set;
}();
```
This list is then used later in:
if (kinjaQuirks.get().contains(domain) && isKinjaLoginAvatarElement(element)) { … }
So it becomes moot when these are not part anymore of Kinja Login system.
The list of domains to remove is:
* avclub.com
* deadspin.com
* jezebel.com
* lifehacker.com
* thetakeout.com
* theonion.com
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=213418
[Bug 213418] Storage Access API: Add the capability to call the Storage Access API as a quirk, on behalf of websites that should be doing it themselves
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240912/ecf9914d/attachment-0001.htm>
More information about the webkit-unassigned
mailing list