Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: Source/modules/accessibility/AXTable.cpp

Issue 742353004: Implement computedRole and computedName (behind a flag) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Finished pulling out ScopedAXObjectCache etc. Many fprintfs remain. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "modules/accessibility/AXTable.h" 30 #include "modules/accessibility/AXTable.h"
31 31
32 #include "core/dom/AXObjectCache.h"
32 #include "core/dom/ElementTraversal.h" 33 #include "core/dom/ElementTraversal.h"
33 #include "core/html/HTMLCollection.h" 34 #include "core/html/HTMLCollection.h"
34 #include "core/html/HTMLTableCaptionElement.h" 35 #include "core/html/HTMLTableCaptionElement.h"
35 #include "core/html/HTMLTableCellElement.h" 36 #include "core/html/HTMLTableCellElement.h"
36 #include "core/html/HTMLTableColElement.h" 37 #include "core/html/HTMLTableColElement.h"
37 #include "core/html/HTMLTableElement.h" 38 #include "core/html/HTMLTableElement.h"
38 #include "core/html/HTMLTableRowElement.h" 39 #include "core/html/HTMLTableRowElement.h"
39 #include "core/html/HTMLTableRowsCollection.h" 40 #include "core/html/HTMLTableRowsCollection.h"
40 #include "core/html/HTMLTableSectionElement.h" 41 #include "core/html/HTMLTableSectionElement.h"
41 #include "core/rendering/RenderTableCell.h" 42 #include "core/rendering/RenderTableCell.h"
42 #include "modules/accessibility/AXObjectCacheImpl.h" 43 #include "modules/accessibility/AXObjectCacheImpl.h"
43 #include "modules/accessibility/AXTableCell.h" 44 #include "modules/accessibility/AXTableCell.h"
44 #include "modules/accessibility/AXTableColumn.h" 45 #include "modules/accessibility/AXTableColumn.h"
45 #include "modules/accessibility/AXTableRow.h" 46 #include "modules/accessibility/AXTableRow.h"
46 47
47 namespace blink { 48 namespace blink {
48 49
49 using namespace HTMLNames; 50 using namespace HTMLNames;
50 51
51 AXTable::AXTable(RenderObject* renderer) 52 AXTable::AXTable(RenderObject* renderer, AXObjectCache* axObjectCache)
52 : AXRenderObject(renderer) 53 : AXRenderObject(renderer, axObjectCache)
53 , m_headerContainer(nullptr) 54 , m_headerContainer(nullptr)
54 , m_isAXTable(true) 55 , m_isAXTable(true)
55 { 56 {
56 } 57 }
57 58
58 AXTable::~AXTable() 59 AXTable::~AXTable()
59 { 60 {
60 } 61 }
61 62
62 void AXTable::init() 63 void AXTable::init()
63 { 64 {
64 AXRenderObject::init(); 65 AXRenderObject::init();
65 m_isAXTable = isTableExposableThroughAccessibility(); 66 m_isAXTable = isTableExposableThroughAccessibility();
66 } 67 }
67 68
68 PassRefPtr<AXTable> AXTable::create(RenderObject* renderer) 69 PassRefPtr<AXTable> AXTable::create(RenderObject* renderer, AXObjectCache* axObj ectCache)
69 { 70 {
70 return adoptRef(new AXTable(renderer)); 71 return adoptRef(new AXTable(renderer, axObjectCache));
71 } 72 }
72 73
73 bool AXTable::hasARIARole() const 74 bool AXTable::hasARIARole() const
74 { 75 {
75 if (!m_renderer) 76 if (!m_renderer)
76 return false; 77 return false;
77 78
78 AccessibilityRole ariaRole = ariaRoleAttribute(); 79 AccessibilityRole ariaRole = ariaRoleAttribute();
79 if (ariaRole != UnknownRole) 80 if (ariaRole != UnknownRole)
80 return true; 81 return true;
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 } 571 }
571 572
572 // try the standard 573 // try the standard
573 if (title.isEmpty()) 574 if (title.isEmpty())
574 title = AXRenderObject::title(); 575 title = AXRenderObject::title();
575 576
576 return title; 577 return title;
577 } 578 }
578 579
579 } // namespace blink 580 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698