Title: [162482] trunk/LayoutTests
Revision
162482
Author
[email protected]
Date
2014-01-21 16:06:00 -0800 (Tue, 21 Jan 2014)

Log Message

AX: Mac: Expose the visible text of a password field to AX
https://bugs.webkit.org/show_bug.cgi?id=127353

Test landed with this fix was filing everywhere, trying to fix it.

* accessibility/password-field-value.html: Fix paths in the test, and clean it up a little.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (162481 => 162482)


--- trunk/LayoutTests/ChangeLog	2014-01-22 00:04:26 UTC (rev 162481)
+++ trunk/LayoutTests/ChangeLog	2014-01-22 00:06:00 UTC (rev 162482)
@@ -1,3 +1,12 @@
+2014-01-21  Alexey Proskuryakov  <[email protected]>
+
+        AX: Mac: Expose the visible text of a password field to AX
+        https://bugs.webkit.org/show_bug.cgi?id=127353
+
+        Test landed with this fix was filing everywhere, trying to fix it.
+
+        * accessibility/password-field-value.html: Fix paths in the test, and clean it up a little.
+
 2014-01-21  Bear Travis  <[email protected]>
 
         [CSS Shapes] Preserve box-shape order when serializing shape values

Modified: trunk/LayoutTests/accessibility/password-field-value.html (162481 => 162482)


--- trunk/LayoutTests/accessibility/password-field-value.html	2014-01-22 00:04:26 UTC (rev 162481)
+++ trunk/LayoutTests/accessibility/password-field-value.html	2014-01-22 00:06:00 UTC (rev 162482)
@@ -1,7 +1,7 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<!DOCTYPE html>
 <html>
 <head>
-<script src=""
+<script src=""
 </head>
 <body id="body">
 
@@ -14,13 +14,14 @@
 
     description("This tests that the AX exposed value of a password field is the rendered text.");
 
-    if (window.accessibilityController) {
+    if (window.accessibilityController)
         debug("Password field: " + accessibilityController.accessibleElementById("pass").stringValue);
-    }
+    else
+        testFailed("This test depends on accessibilityController, please use run-webkit-tests to run it.");
     successfullyParsed = true;
 
 </script>
 
-<script src=""
+<script src=""
 </body>
 </html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to