<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[164107] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/164107">164107</a></dd>
<dt>Author</dt> <dd>cfleizach@apple.com</dd>
<dt>Date</dt> <dd>2014-02-14 09:52:41 -0800 (Fri, 14 Feb 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>AX: WebKit needs heuristics to differentiate lists used for layout from semantic data lists, similar to the heuristics for layout tables versus data tables.
https://bugs.webkit.org/show_bug.cgi?id=122320

Reviewed by Mario Sanchez Prada.

Source/WebCore: 

Many authors use lists for layout, rather than presenting data. Exposing these kinds of lists to accessibility users
makes the web harder to process and listen, while degrading the importance of real lists.

This introduces heuristics to filter out layout lists with the following:
   1. If it's a named list, like ol or aria=list, then it's a list.
     1a. Unless the list has no children, then it's not a list.
   2. If it displays visible list markers, it's a list.
   3. If it does not display list markers and has only one child, it's not a list.
   4. If it does not have any listitem children, it's not a list.
   5. Otherwise it's a list (for now).

Test: accessibility/list-detection.html

* accessibility/AccessibilityList.cpp:
(WebCore::AccessibilityList::determineAccessibilityRole):
(WebCore::AccessibilityList::roleValue):
* accessibility/AccessibilityList.h:

LayoutTests: 

* accessibility/aria-roles.html:
* accessibility/list-detection-expected.txt: Added.
* accessibility/list-detection.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsaccessibilityariaroleshtml">trunk/LayoutTests/accessibility/aria-roles.html</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreaccessibilityAccessibilityListcpp">trunk/Source/WebCore/accessibility/AccessibilityList.cpp</a></li>
<li><a href="#trunkSourceWebCoreaccessibilityAccessibilityListh">trunk/Source/WebCore/accessibility/AccessibilityList.h</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsaccessibilitylistdetectionexpectedtxt">trunk/LayoutTests/accessibility/list-detection-expected.txt</a></li>
<li><a href="#trunkLayoutTestsaccessibilitylistdetectionhtml">trunk/LayoutTests/accessibility/list-detection.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (164106 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-02-14 17:51:28 UTC (rev 164106)
+++ trunk/LayoutTests/ChangeLog        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -1,3 +1,14 @@
</span><ins>+2014-02-14  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: WebKit needs heuristics to differentiate lists used for layout from semantic data lists, similar to the heuristics for layout tables versus data tables.
+        https://bugs.webkit.org/show_bug.cgi?id=122320
+
+        Reviewed by Mario Sanchez Prada.
+
+        * accessibility/aria-roles.html:
+        * accessibility/list-detection-expected.txt: Added.
+        * accessibility/list-detection.html: Added.
+
</ins><span class="cx"> 2014-02-13  Brent Fulgham  &lt;bfulgham@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Create some latched scrolling tests.
</span></span></pre></div>
<a id="trunkLayoutTestsaccessibilityariaroleshtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/accessibility/aria-roles.html (164106 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/accessibility/aria-roles.html        2014-02-14 17:51:28 UTC (rev 164106)
+++ trunk/LayoutTests/accessibility/aria-roles.html        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -146,7 +146,7 @@
</span><span class="cx">   &lt;!--List--&gt;
</span><span class="cx">   &lt;div class=&quot;newRole&quot;&gt;
</span><span class="cx">     &lt;p&gt;The following should be a list:&lt;/p&gt;
</span><del>-    &lt;p&gt;&lt;span tabindex=&quot;0&quot; role=&quot;list&quot; id=&quot;ariaList&quot;&gt;X&lt;/span&gt;&lt;/p&gt;
</del><ins>+    &lt;p&gt;&lt;span tabindex=&quot;0&quot; role=&quot;list&quot; id=&quot;ariaList&quot;&gt;&lt;span role=&quot;listitem&quot;&gt;X&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
</ins><span class="cx">     &lt;p&gt;Actual list:&lt;/p&gt;
</span><span class="cx">     &lt;ul id=&quot;realList&quot;&gt;
</span><span class="cx">         &lt;li&gt;Broccoli&lt;/li&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsaccessibilitylistdetectionexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/accessibility/list-detection-expected.txt (0 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/accessibility/list-detection-expected.txt                                (rev 0)
+++ trunk/LayoutTests/accessibility/list-detection-expected.txt        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+This tests the heuristic to determine if a 'list' is really a list, or just being used for layout.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+Ordered list is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Empty ordered list is not a list.
+PASS axElement.role == 'AXRole: AXList' is false
+
+
+Empty description list is not a list.
+PASS axElement.role == 'AXRole: AXList' is false
+
+
+Description list is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+ARIA role=list is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Empty ARIA list is not a list.
+PASS axElement.role == 'AXRole: AXList' is false
+
+
+ARIA list with one item is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Default styled Unordered list is a list, because it shows markers.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Unordered list with more than 1 item and no style is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Unordered list with 1 item and no style is not list.
+PASS axElement.role == 'AXRole: AXList' is false
+
+
+List with non list item children is not a list
+PASS axElement.role == 'AXRole: AXList' is false
+
+
+Unordered list with image for markers is a list - even if image fails to load.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+Unordered list with aria role and at least one aria list items is a list.
+PASS axElement.role == 'AXRole: AXList' is true
+
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestsaccessibilitylistdetectionhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/accessibility/list-detection.html (0 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/accessibility/list-detection.html                                (rev 0)
+++ trunk/LayoutTests/accessibility/list-detection.html        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -0,0 +1,98 @@
</span><ins>+&lt;!DOCTYPE HTML PUBLIC &quot;-//IETF//DTD HTML//EN&quot;&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;/head&gt;
+&lt;body id=&quot;body&quot;&gt;
+
+&lt;div id=&quot;content&quot;&gt;
+
+&lt;ol id=&quot;list1&quot; test-description=&quot;Ordered list is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/ol&gt;
+
+&lt;ol id=&quot;list2&quot; test-description=&quot;Empty ordered list is not a list.&quot; is-list=&quot;false&quot;&gt;
+&lt;/ol&gt;
+
+&lt;dl id=&quot;list3&quot; test-description=&quot;Empty description list is not a list.&quot; is-list=&quot;false&quot;&gt;
+&lt;/dl&gt;
+
+&lt;dl id=&quot;list4&quot; test-description=&quot;Description list is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/dl&gt;
+
+&lt;div id=&quot;list5&quot; role=&quot;list&quot; test-description=&quot;ARIA role=list is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;div role=&quot;listitem&quot;&gt;item&lt;/div&gt;
+&lt;div role=&quot;listitem&quot;&gt;item&lt;/div&gt;
+&lt;/div&gt;
+
+&lt;div id=&quot;list6&quot; role=&quot;list&quot; test-description=&quot;Empty ARIA list is not a list.&quot; is-list=&quot;false&quot;&gt;
+&lt;/div&gt;
+
+&lt;div id=&quot;list7&quot; role=&quot;list&quot; test-description=&quot;ARIA list with one item is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;div role=&quot;listitem&quot;&gt;item&lt;/div&gt;
+&lt;/div&gt;
+
+&lt;ul id=&quot;list8&quot; test-description=&quot;Default styled Unordered list is a list, because it shows markers.&quot; is-list=&quot;true&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;ul id=&quot;list9&quot; style=&quot;list-style-type: none;&quot; test-description=&quot;Unordered list with more than 1 item and no style is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;ul id=&quot;list10&quot; style=&quot;list-style-type: none;&quot; test-description=&quot;Unordered list with 1 item and no style is not list.&quot; is-list=&quot;false&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;ul id=&quot;list11&quot; test-description=&quot;List with non list item children is not a list&quot; is-list=&quot;false&quot;&gt;
+&lt;div&gt;item&lt;/div&gt;
+&lt;/ul&gt;
+
+&lt;ul id=&quot;list12&quot; style=&quot;list-style-image: url('test.gif');&quot; test-description=&quot;Unordered list with image for markers is a list - even if image fails to load.&quot; is-list=&quot;true&quot;&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;li&gt;item&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;ul id=&quot;list13&quot; role=&quot;list&quot; test-description=&quot;Unordered list with aria role and at least one aria list items is a list.&quot; is-list=&quot;true&quot;&gt;
+&lt;div role=&quot;listitem&quot;&gt;item&lt;/div&gt;
+&lt;div&gt;item&lt;/div&gt;
+&lt;/ul&gt;
+
+&lt;/div&gt;
+
+&lt;p id=&quot;description&quot;&gt;&lt;/p&gt;
+&lt;div id=&quot;console&quot;&gt;&lt;/div&gt;
+
+&lt;script&gt;
+
+    description(&quot;This tests the heuristic to determine if a 'list' is really a list, or just being used for layout.&quot;);
+
+    if (window.accessibilityController) {
+
+        var k = 1;
+        while (document.getElementById(&quot;list&quot; + k)) {
+            var element = document.getElementById(&quot;list&quot; + k);
+            var axElement =  accessibilityController.accessibleElementById(&quot;list&quot; + k);
+            debug(element.getAttribute(&quot;test-description&quot;));
+            if (element.getAttribute(&quot;is-list&quot;) === &quot;true&quot;) {
+                shouldBeTrue(&quot;axElement.role == 'AXRole: AXList'&quot;);
+            } else {
+                shouldBeFalse(&quot;axElement.role == 'AXRole: AXList'&quot;);
+            }
+            debug(&quot;\n&quot;);
+            k++;
+        }
+
+        document.getElementById(&quot;content&quot;).style.visibility = &quot;hidden&quot;;
+    }
+
+&lt;/script&gt;
+
+&lt;script src=&quot;../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (164106 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-02-14 17:51:28 UTC (rev 164106)
+++ trunk/Source/WebCore/ChangeLog        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -1,3 +1,28 @@
</span><ins>+2014-02-14  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: WebKit needs heuristics to differentiate lists used for layout from semantic data lists, similar to the heuristics for layout tables versus data tables.
+        https://bugs.webkit.org/show_bug.cgi?id=122320
+
+        Reviewed by Mario Sanchez Prada.
+
+        Many authors use lists for layout, rather than presenting data. Exposing these kinds of lists to accessibility users
+        makes the web harder to process and listen, while degrading the importance of real lists.
+
+        This introduces heuristics to filter out layout lists with the following:
+           1. If it's a named list, like ol or aria=list, then it's a list.
+             1a. Unless the list has no children, then it's not a list.
+           2. If it displays visible list markers, it's a list.
+           3. If it does not display list markers and has only one child, it's not a list.
+           4. If it does not have any listitem children, it's not a list.
+           5. Otherwise it's a list (for now).
+
+        Test: accessibility/list-detection.html
+
+        * accessibility/AccessibilityList.cpp:
+        (WebCore::AccessibilityList::determineAccessibilityRole):
+        (WebCore::AccessibilityList::roleValue):
+        * accessibility/AccessibilityList.h:
+
</ins><span class="cx"> 2014-02-14  Brendan Long  &lt;b.long@cablelabs.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Use AtomicString arguments in TrackPrivateBaseClient callbacks
</span></span></pre></div>
<a id="trunkSourceWebCoreaccessibilityAccessibilityListcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/accessibility/AccessibilityList.cpp (164106 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/accessibility/AccessibilityList.cpp        2014-02-14 17:51:28 UTC (rev 164106)
+++ trunk/Source/WebCore/accessibility/AccessibilityList.cpp        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -31,7 +31,9 @@
</span><span class="cx"> 
</span><span class="cx"> #include &quot;AXObjectCache.h&quot;
</span><span class="cx"> #include &quot;HTMLNames.h&quot;
</span><ins>+#include &quot;RenderListItem.h&quot;
</ins><span class="cx"> #include &quot;RenderObject.h&quot;
</span><ins>+#include &quot;RenderStyle.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx">     
</span><span class="lines">@@ -91,15 +93,67 @@
</span><span class="cx">         return false;
</span><span class="cx">     
</span><span class="cx">     Node* node = m_renderer-&gt;node();
</span><del>-    return node &amp;&amp; node-&gt;hasTagName(dlTag);    
</del><ins>+    return node &amp;&amp; node-&gt;hasTagName(dlTag);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-AccessibilityRole AccessibilityList::roleValue() const
</del><ins>+AccessibilityRole AccessibilityList::determineAccessibilityRole()
</ins><span class="cx"> {
</span><del>-    if (isDescriptionList())
</del><ins>+    m_ariaRole = determineAriaRoleAttribute();
+    
+    // Directory is mapped to list for now, but does not adhere to the same heuristics.
+    if (ariaRoleAttribute() == DirectoryRole)
+        return ListRole;
+    
+    // Heuristic to determine if this list is being used for layout or for content.
+    //   1. If it's a named list, like ol or aria=list, then it's a list.
+    //      1a. Unless the list has no children, then it's not a list.
+    //   2. If it displays visible list markers, it's a list.
+    //   3. If it does not display list markers and has only one child, it's not a list.
+    //   4. If it does not have any listitem children, it's not a list.
+    //   5. Otherwise it's a list (for now).
+    
+    AccessibilityRole role = ListRole;
+    
+    // Temporarily set role so that we can query children (otherwise canHaveChildren returns false).
+    m_role = role;
+    
+    unsigned listItemCount = 0;
+    bool hasVisibleMarkers = false;
+
+    const auto&amp; children = this-&gt;children();
+    // DescriptionLists are always semantically a description list, so do not apply heuristics.
+    if (isDescriptionList() &amp;&amp; children.size())
</ins><span class="cx">         return DescriptionListRole;
</span><ins>+
+    for (const auto&amp; child : children) {
+        if (child-&gt;ariaRoleAttribute() == ListItemRole)
+            listItemCount++;
+        else if (child-&gt;roleValue() == ListItemRole) {
+            RenderObject* listItem = child-&gt;renderer();
+            if (listItem &amp;&amp; listItem-&gt;isListItem()) {
+                if (listItem-&gt;style().listStyleType() != NoneListStyle || listItem-&gt;style().listStyleImage())
+                    hasVisibleMarkers = true;
+                listItemCount++;
+            }
+        }
+    }
</ins><span class="cx">     
</span><del>-    return ListRole;
</del><ins>+    bool unorderedList = isUnorderedList();
+    // Non &lt;ul&gt; lists and ARIA lists only need to have one child.
+    // &lt;ul&gt; lists need to have 1 child, or visible markers.
+    if (!unorderedList || ariaRoleAttribute() != UnknownRole) {
+        if (!listItemCount)
+            role = GroupRole;
+    } else if (unorderedList &amp;&amp; listItemCount &lt;= 1 &amp;&amp; !hasVisibleMarkers)
+        role = GroupRole;
+
+    return role;
</ins><span class="cx"> }
</span><span class="cx">     
</span><ins>+AccessibilityRole AccessibilityList::roleValue() const
+{
+    ASSERT(m_role != UnknownRole);
+    return m_role;
+}
+    
</ins><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCoreaccessibilityAccessibilityListh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/accessibility/AccessibilityList.h (164106 => 164107)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/accessibility/AccessibilityList.h        2014-02-14 17:51:28 UTC (rev 164106)
+++ trunk/Source/WebCore/accessibility/AccessibilityList.h        2014-02-14 17:52:41 UTC (rev 164107)
</span><span class="lines">@@ -49,6 +49,7 @@
</span><span class="cx">     virtual AccessibilityRole roleValue() const override final;
</span><span class="cx"> private:
</span><span class="cx">     virtual bool computeAccessibilityIsIgnored() const override;
</span><ins>+    virtual AccessibilityRole determineAccessibilityRole() override;
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> ACCESSIBILITY_OBJECT_TYPE_CASTS(AccessibilityList, isList())
</span></span></pre>
</div>
</div>

</body>
</html>