Title: [155375] trunk/Source/WebCore
Revision
155375
Author
[email protected]
Date
2013-09-09 12:58:35 -0700 (Mon, 09 Sep 2013)

Log Message

Try to fix GTK build.
        
Not reviewed.

* accessibility/AccessibilityTable.cpp:
(WebCore::AccessibilityTable::isTableExposableThroughAccessibility):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (155374 => 155375)


--- trunk/Source/WebCore/ChangeLog	2013-09-09 19:54:33 UTC (rev 155374)
+++ trunk/Source/WebCore/ChangeLog	2013-09-09 19:58:35 UTC (rev 155375)
@@ -1,5 +1,14 @@
 2013-09-09  Antti Koivisto  <[email protected]>
 
+        Try to fix GTK build.
+        
+        Not reviewed.
+
+        * accessibility/AccessibilityTable.cpp:
+        (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
+
+2013-09-09  Antti Koivisto  <[email protected]>
+
         Hide node() below RenderLayerModelObject, use element() instead
         https://bugs.webkit.org/show_bug.cgi?id=121038
 

Modified: trunk/Source/WebCore/accessibility/AccessibilityTable.cpp (155374 => 155375)


--- trunk/Source/WebCore/accessibility/AccessibilityTable.cpp	2013-09-09 19:54:33 UTC (rev 155374)
+++ trunk/Source/WebCore/accessibility/AccessibilityTable.cpp	2013-09-09 19:58:35 UTC (rev 155375)
@@ -308,7 +308,7 @@
 
     // Gtk+ ATs expect all tables to be exposed as tables.
 #if PLATFORM(GTK)
-    Node* tableNode = toRenderTable(m_renderer)->node();
+    Element* tableNode = toRenderTable(m_renderer)->element();
     return tableNode && isHTMLTableElement(tableNode);
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to