Unreviewed, fix wrong paths to JS resources in GTK tests.
authormario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 17 Apr 2012 11:53:51 +0000 (11:53 +0000)
committermario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 17 Apr 2012 11:53:51 +0000 (11:53 +0000)
* platform/gtk/accessibility/aria-list-and-listitem.html:
* platform/gtk/accessibility/aria-option-role.html:
* platform/gtk/accessibility/aria-option-role-expected.txt: Fixed
typo in the expected output.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@114366 268f45cc-cd09-0410-ab3c-d52691b4dbfc

LayoutTests/ChangeLog
LayoutTests/platform/gtk/accessibility/aria-list-and-listitem.html
LayoutTests/platform/gtk/accessibility/aria-option-role-expected.txt
LayoutTests/platform/gtk/accessibility/aria-option-role.html

index cda7cef..929e8a0 100644 (file)
@@ -1,3 +1,12 @@
+2012-04-17  Mario Sanchez Prada  <msanchez@igalia.com>
+
+        Unreviewed, fix wrong paths to JS resources in GTK tests.
+
+        * platform/gtk/accessibility/aria-list-and-listitem.html:
+        * platform/gtk/accessibility/aria-option-role.html:
+        * platform/gtk/accessibility/aria-option-role-expected.txt: Fixed
+        typo in the expected output.
+
 2012-04-17  János Badics  <jbadics@inf.u-szeged.hu>
 
         [Qt] Unreviewed gardening. Skipped this test because of missing test fonts.
index 3290357..5e067aa 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
+<script src="../../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body id="body">
 
@@ -30,6 +30,6 @@
 
 </script>
 
-<script src="../fast/js/resources/js-test-post.js"></script>
+<script src="../../../fast/js/resources/js-test-post.js"></script>
 </body>
 </html>
index 233c376..52e2657 100644 (file)
@@ -7,7 +7,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 PASS firstChild.role is 'AXRole: list item'
 PASS firstChild.title is 'AXTitle: option 1'
-PASS secondChild.role 'AXRole: list item'
+PASS secondChild.role is 'AXRole: list item'
 PASS secondChild.description is 'AXDescription: label 2'
 PASS firstChild.childrenCount is 0
 PASS secondChild.childrenCount is 0
index 944e45f..39d5d60 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<script src="../fast/js/resources/js-test-pre.js"></script>
+<script src="../../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body id="body">
 
           var listBox = accessibilityController.focusedElement.childAtIndex(0);
           var firstChild = listBox.childAtIndex(0);
           var secondChild = listBox.childAtIndex(1);
-          shouldBe("firstChild.role", "'AXRole: AXStaticText'");
+          shouldBe("firstChild.role", "'AXRole: list item'");
           shouldBe("firstChild.title", "'AXTitle: option 1'");
 
-          shouldBe("secondChild.role", "'AXRole: AXStaticText'");
+          shouldBe("secondChild.role", "'AXRole: list item'");
           shouldBe("secondChild.description", "'AXDescription: label 2'");
 
           shouldBe("firstChild.childrenCount", "0");
@@ -37,6 +37,6 @@
 
 </script>
 
-<script src="../fast/js/resources/js-test-post.js"></script>
+<script src="../../../fast/js/resources/js-test-post.js"></script>
 </body>
 </html>