<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>267623</bug_id>
          
          <creation_ts>2024-01-16 23:45:19 -0800</creation_ts>
          <short_desc>Quirks.cpp: Fix and extend domain method</short_desc>
          <delta_ts>2024-01-23 23:46:14 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>WebKit Misc.</component>
          <version>Safari 17</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>NEW</bug_status>
          <resolution></resolution>
          
          <see_also>https://bugs.webkit.org/show_bug.cgi?id=260938</see_also>
    
    <see_also>https://bugs.webkit.org/show_bug.cgi?id=267569</see_also>
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          <blocked>258603</blocked>
          <everconfirmed>1</everconfirmed>
          <reporter name="Karl Dubost">karlcow</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>annevk</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>2005509</commentid>
    <comment_count>0</comment_count>
    <who name="Karl Dubost">karlcow</who>
    <bug_when>2024-01-16 23:45:19 -0800</bug_when>
    <thetext>bool Quirks::isDomain(const String&amp; domainString) const
{
    return RegistrableDomain(m_document-&gt;topDocument().url()).string() == domainString;
}

was added with 
Bug 260938
https://github.com/WebKit/WebKit/pull/17329

but it broke at least one Quirk Bug 267569

Indeed 
Quirks::isDomain(&quot;www.example.com&quot;) will return false
Quirks::isDomain(&quot;example.com&quot;) will return true

because RegistrableDomain(m_document-&gt;topDocument().url()).string()
returns only the top domain.

So probably we need something along

Quirks::isFullDomain(&quot;www.example.com&quot;) matches only www.example.com
Quirks::isTopDomain(&quot;example.com&quot;)      matches only example.com

And maybe something along 
Quirks::isSubDomain(&quot;example.com&quot;) matching everything *.example.com

Real names to be determined.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2005581</commentid>
    <comment_count>1</comment_count>
    <who name="Anne van Kesteren">annevk</who>
    <bug_when>2024-01-17 05:43:39 -0800</bug_when>
    <thetext>isDomain should be renamed to isRegistrableDomain or maybe even topLevelDocumentRegistrableDomainIs.

However it&apos;s not clear you want isRegistrableDomain to begin with here. After all, it can lead to bug 267569 happening. I would expect these to be useful:

- topLevelDocumentDomainIs
- topLevelDocumentDomainIsSubDomainOf / topLevelDocumentDomainEndsWith</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2007126</commentid>
    <comment_count>2</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2024-01-23 23:46:14 -0800</bug_when>
    <thetext>&lt;rdar://problem/121499128&gt;</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>