Title: [152172] trunk/LayoutTests
Revision
152172
Author
ma...@webkit.org
Date
2013-06-28 09:39:33 -0700 (Fri, 28 Jun 2013)

Log 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.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (152171 => 152172)


--- trunk/LayoutTests/ChangeLog	2013-06-28 16:23:18 UTC (rev 152171)
+++ trunk/LayoutTests/ChangeLog	2013-06-28 16:39:33 UTC (rev 152172)
@@ -1,3 +1,14 @@
+2013-06-28  Mario Sanchez Prada  <mario.pr...@samsung.com>
+
+        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.
+
 2013-06-28  Christophe Dumez  <ch.du...@sisa.samsung.com>
 
         Introduce SVGGraphicsElement IDL interface

Modified: trunk/LayoutTests/accessibility/media-element.html (152171 => 152172)


--- trunk/LayoutTests/accessibility/media-element.html	2013-06-28 16:23:18 UTC (rev 152171)
+++ trunk/LayoutTests/accessibility/media-element.html	2013-06-28 16:39:33 UTC (rev 152172)
@@ -20,7 +20,7 @@
             {
                 debug(indent(indentLevel) + "description: " + axObject.description); 
                 debug(indent(indentLevel) + "role: " + axObject.role); 
-                if (axObject.subrole != 'AXSubrole: ') debug(indent(indentLevel) + "subrole: " + axObject.subrole); 
+                if (axObject.subrole && axObject.subrole != 'AXSubrole: ') debug(indent(indentLevel) + "subrole: " + axObject.subrole);
                 debug("<br>");
             }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to