Changeset 152172 in webkit


Ignore:
Timestamp:
Jun 28, 2013 9:39:33 AM (11 years ago)
Author:
mario@webkit.org
Message:

accessibility/media-element.html does not support platforms without subroles
https://bugs.webkit.org/show_bug.cgi?id=118187

Reviewed by Chris Fleizach.

Update the test to be more friendly with platforms not supporting subroles.

  • accessibility/media-element.html: Updated test.
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r152167 r152172  
     12013-06-28  Mario Sanchez Prada  <mario.prada@samsung.com>
     2
     3        accessibility/media-element.html does not support platforms without subroles
     4        https://bugs.webkit.org/show_bug.cgi?id=118187
     5
     6        Reviewed by Chris Fleizach.
     7
     8        Update the test to be more friendly with platforms not supporting subroles.
     9
     10        * accessibility/media-element.html: Updated test.
     11
    1122013-06-28  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    213
  • trunk/LayoutTests/accessibility/media-element.html

    r151852 r152172  
    2121                debug(indent(indentLevel) + "description: " + axObject.description);
    2222                debug(indent(indentLevel) + "role: " + axObject.role);
    23                 if (axObject.subrole != 'AXSubrole: ') debug(indent(indentLevel) + "subrole: " + axObject.subrole);
     23                if (axObject.subrole && axObject.subrole != 'AXSubrole: ') debug(indent(indentLevel) + "subrole: " + axObject.subrole);
    2424                debug("<br>");
    2525            }
Note: See TracChangeset for help on using the changeset viewer.