| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "core/rendering/RenderTableCell.h" | 32 #include "core/rendering/RenderTableCell.h" |
| 33 #include "modules/accessibility/AXObjectCacheImpl.h" | 33 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 34 #include "modules/accessibility/AXTableCell.h" | 34 #include "modules/accessibility/AXTableCell.h" |
| 35 | 35 |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 using namespace HTMLNames; | 39 using namespace HTMLNames; |
| 40 | 40 |
| 41 AXTableColumn::AXTableColumn() | 41 AXTableColumn::AXTableColumn(AXObjectCache* axObjectCache) |
| 42 : AXMockObject(axObjectCache) |
| 42 { | 43 { |
| 43 } | 44 } |
| 44 | 45 |
| 45 AXTableColumn::~AXTableColumn() | 46 AXTableColumn::~AXTableColumn() |
| 46 { | 47 { |
| 47 } | 48 } |
| 48 | 49 |
| 49 PassRefPtr<AXTableColumn> AXTableColumn::create() | 50 PassRefPtr<AXTableColumn> AXTableColumn::create(AXObjectCache* axObjectCache) |
| 50 { | 51 { |
| 51 return adoptRef(new AXTableColumn()); | 52 return adoptRef(new AXTableColumn(axObjectCache)); |
| 52 } | 53 } |
| 53 | 54 |
| 54 void AXTableColumn::setParent(AXObject* parent) | 55 void AXTableColumn::setParent(AXObject* parent) |
| 55 { | 56 { |
| 56 AXMockObject::setParent(parent); | 57 AXMockObject::setParent(parent); |
| 57 | 58 |
| 58 clearChildren(); | 59 clearChildren(); |
| 59 } | 60 } |
| 60 | 61 |
| 61 LayoutRect AXTableColumn::elementRect() const | 62 LayoutRect AXTableColumn::elementRect() const |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 // make sure the last one isn't the same as this one (rowspan cells) | 176 // make sure the last one isn't the same as this one (rowspan cells) |
| 176 if (m_children.size() > 0 && m_children.last() == cell) | 177 if (m_children.size() > 0 && m_children.last() == cell) |
| 177 continue; | 178 continue; |
| 178 | 179 |
| 179 m_children.append(cell); | 180 m_children.append(cell); |
| 180 m_columnRect.unite(cell->elementRect()); | 181 m_columnRect.unite(cell->elementRect()); |
| 181 } | 182 } |
| 182 } | 183 } |
| 183 | 184 |
| 184 } // namespace blink | 185 } // namespace blink |
| OLD | NEW |