Title: [189045] trunk/LayoutTests
Revision
189045
Author
[email protected]
Date
2015-08-27 12:36:02 -0700 (Thu, 27 Aug 2015)

Log Message

AX: Remove accessibility/mac/change-notification-on-scroll.html test
https://bugs.webkit.org/show_bug.cgi?id=148534

Patch by Nan Wang <[email protected]> on 2015-08-27
Reviewed by Chris Fleizach.

Removed the test since AXValueChange notifications are not being sent
when scrollable regions inside the WebView are scrolled.

* accessibility/mac/change-notification-on-scroll-expected.txt: Removed.
* accessibility/mac/change-notification-on-scroll.html: Removed.
* platform/mac/TestExpectations:

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (189044 => 189045)


--- trunk/LayoutTests/ChangeLog	2015-08-27 19:21:29 UTC (rev 189044)
+++ trunk/LayoutTests/ChangeLog	2015-08-27 19:36:02 UTC (rev 189045)
@@ -1,5 +1,19 @@
 2015-08-27  Nan Wang  <[email protected]>
 
+        AX: Remove accessibility/mac/change-notification-on-scroll.html test
+        https://bugs.webkit.org/show_bug.cgi?id=148534
+
+        Reviewed by Chris Fleizach.
+
+        Removed the test since AXValueChange notifications are not being sent
+        when scrollable regions inside the WebView are scrolled.
+
+        * accessibility/mac/change-notification-on-scroll-expected.txt: Removed.
+        * accessibility/mac/change-notification-on-scroll.html: Removed.
+        * platform/mac/TestExpectations:
+
+2015-08-27  Nan Wang  <[email protected]>
+
         AX: Fix accessibility/select-element-at-index.html test
         https://bugs.webkit.org/show_bug.cgi?id=148516
 

Deleted: trunk/LayoutTests/accessibility/mac/change-notification-on-scroll-expected.txt (189044 => 189045)


--- trunk/LayoutTests/accessibility/mac/change-notification-on-scroll-expected.txt	2015-08-27 19:21:29 UTC (rev 189044)
+++ trunk/LayoutTests/accessibility/mac/change-notification-on-scroll-expected.txt	2015-08-27 19:36:02 UTC (rev 189045)
@@ -1,2 +0,0 @@
-
-Success!

Deleted: trunk/LayoutTests/accessibility/mac/change-notification-on-scroll.html (189044 => 189045)


--- trunk/LayoutTests/accessibility/mac/change-notification-on-scroll.html	2015-08-27 19:21:29 UTC (rev 189044)
+++ trunk/LayoutTests/accessibility/mac/change-notification-on-scroll.html	2015-08-27 19:36:02 UTC (rev 189045)
@@ -1,38 +0,0 @@
-<html>
-<body>
-<textarea rows=25 cols=10 id="textarea">
-hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello
  hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello hello 
-</textarea>
-
-<div id="result">This test has either failed, or it is being run manually.</div>
-
-<script>
-
-    if (window.testRunner)
-        testRunner.dumpAsText();
-
-    var textarea = 0;
-    function ariaCallback(notification) {
-        if (notification == "AXValueChanged") {
-            var result = document.getElementById("result");
-            result.innerHTML = "Success!"; 
-            textarea.removeNotificationListener();
-            window.testRunner.notifyDone();
-        }
-    }
-
-    if (window.accessibilityController) {
-        window.testRunner.waitUntilDone();
-        document.getElementById("textarea").focus();
-        textarea = window.accessibilityController.focusedElement;
-        
-        var addedNotification = textarea.addNotificationListener(ariaCallback);
-        
-        window.eventSender.mouseMoveTo(80, 150);
-        window.eventSender.mouseDown();
-        window.eventSender.mouseUp();
-    }
-</script>
-
-</body>
-</html>

Modified: trunk/LayoutTests/platform/mac/TestExpectations (189044 => 189045)


--- trunk/LayoutTests/platform/mac/TestExpectations	2015-08-27 19:21:29 UTC (rev 189044)
+++ trunk/LayoutTests/platform/mac/TestExpectations	2015-08-27 19:36:02 UTC (rev 189045)
@@ -56,8 +56,6 @@
 # No button tracked
 fast/events/mouseover-button.html
 
-webkit.org/b/33923 accessibility/mac/change-notification-on-scroll.html [ Skip ] # times out
-
 # eventSender needs to propagate the event to the calling window, not the main frame always.
 http/tests/plugins/plugin-document-has-focus.html
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to