Title: [247916] trunk/LayoutTests
Revision
247916
Author
[email protected]
Date
2019-07-29 12:56:55 -0700 (Mon, 29 Jul 2019)

Log Message

REGRESSION (r247891): Layout Test accessibility/ios-simulator/video-elements-ios.html is failing
https://bugs.webkit.org/show_bug.cgi?id=200231
<rdar://problem/53666599>

Patch by Andres Gonzalez <[email protected]> on 2019-07-29
Reviewed by Chris Fleizach.

We now expose <video> elements when they have controls.
* accessibility/ios-simulator/video-elements-ios-expected.txt:
* accessibility/ios-simulator/video-elements-ios.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (247915 => 247916)


--- trunk/LayoutTests/ChangeLog	2019-07-29 19:20:17 UTC (rev 247915)
+++ trunk/LayoutTests/ChangeLog	2019-07-29 19:56:55 UTC (rev 247916)
@@ -1,3 +1,15 @@
+2019-07-29  Andres Gonzalez  <[email protected]>
+
+        REGRESSION (r247891): Layout Test accessibility/ios-simulator/video-elements-ios.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=200231
+        <rdar://problem/53666599>
+
+        Reviewed by Chris Fleizach.
+
+        We now expose <video> elements when they have controls.
+        * accessibility/ios-simulator/video-elements-ios-expected.txt:
+        * accessibility/ios-simulator/video-elements-ios.html:
+
 2019-07-29  Simon Fraser  <[email protected]>
 
         REGRESSION (r246899): Subtitles show twice when controls show/hide on hulu.com

Modified: trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios-expected.txt (247915 => 247916)


--- trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios-expected.txt	2019-07-29 19:20:17 UTC (rev 247915)
+++ trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios-expected.txt	2019-07-29 19:56:55 UTC (rev 247916)
@@ -5,7 +5,7 @@
 
 
 PASS video.isIgnored is false
-PASS video2.isIgnored is true
+PASS video2.isIgnored is false
 PASS video.description is 'AXLabel: Video label1, 9 seconds'
 PASS video.stringValue is 'AXValue: 0 seconds'
 PASS vid.paused is true

Modified: trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios.html (247915 => 247916)


--- trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios.html	2019-07-29 19:20:17 UTC (rev 247915)
+++ trunk/LayoutTests/accessibility/ios-simulator/video-elements-ios.html	2019-07-29 19:56:55 UTC (rev 247916)
@@ -26,10 +26,9 @@
         var video = accessibilityController.accessibleElementById("video");
         shouldBeFalse("video.isIgnored");
         
-        // We shouldn't expose video elements with native controls
         var video2 = accessibilityController.accessibleElementById("video2");
-        shouldBeTrue("video2.isIgnored");
-        
+        shouldBeFalse("video2.isIgnored");
+
         vid._oncanplaythrough_ = function() {
             shouldBe("video.description", "'AXLabel: Video label1, 9 seconds'");
             shouldBe("video.stringValue", "'AXValue: 0 seconds'");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to