~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/accessibility/AccessibilityObject.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
    DirectoryRole,
171
171
    EditableTextRole,
172
172
    ListItemRole,
 
173
    MenuListPopupRole,
 
174
    MenuListOptionRole,
173
175
 
174
176
    // ARIA Grouping roles
175
177
    LandmarkApplicationRole,
283
285
    virtual bool isFieldset() const { return false; }
284
286
    virtual bool isGroup() const { return false; }
285
287
    virtual bool isARIATreeGridRow() const { return false; }
 
288
    virtual bool isImageMapLink() const { return false; }
 
289
    virtual bool isMenuList() const { return false; }
 
290
    virtual bool isMenuListPopup() const { return false; }
 
291
    virtual bool isMenuListOption() const { return false; }
286
292
    bool isTabList() const { return roleValue() == TabListRole; }
287
293
    bool isTabItem() const { return roleValue() == TabRole; }
288
294
    bool isRadioGroup() const { return roleValue() == RadioGroupRole; }
307
313
    virtual bool isRequired() const { return false; }
308
314
    virtual bool isLinked() const { return false; }
309
315
    virtual bool isExpanded() const { return false; }
 
316
    virtual bool isVisible() const { return true; }
 
317
    virtual bool isCollapsed() const { return false; }
310
318
    virtual void setIsExpanded(bool) { }
311
319
 
312
320
    virtual bool canSetFocusAttribute() const { return false; }