[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
mrowe at apple.com
mrowe at apple.com
Thu Dec 3 13:34:36 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 5bd7b699d6b5d9959984c1ea61385dfa2af5791d
Author: mrowe at apple.com <mrowe at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Nov 12 21:32:11 2009 +0000
Move a misplaced accessibility test from platform/mac-snowleopard/accessibility to accessibility,
and the results from platform/mac-snowleopard/accessibility to platform/mac/accessibility.
Rubber-stamped by Anders Carlsson.
* accessibility/aria-list-and-listitem.html: Renamed from LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem.html.
* platform/mac/accessibility/aria-list-and-listitem-expected.txt: Renamed from LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem-expected.txt.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50900 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 273be45..5ef1d42 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,15 @@
2009-11-12 Mark Rowe <mrowe at apple.com>
+ Rubber-stamped by Anders Carlsson.
+
+ Move a misplaced accessibility test from platform/mac-snowleopard/accessibility to accessibility,
+ and the results from platform/mac-snowleopard/accessibility to platform/mac/accessibility.
+
+ * accessibility/aria-list-and-listitem.html: Renamed from LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem.html.
+ * platform/mac/accessibility/aria-list-and-listitem-expected.txt: Renamed from LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem-expected.txt.
+
+2009-11-12 Mark Rowe <mrowe at apple.com>
+
Rubber-stamped by Brady Eidson.
Land updated results for file-url-mimetypes-2.html and file-url-mimetypes-3.html.
diff --git a/LayoutTests/accessibility/aria-list-and-listitem.html b/LayoutTests/accessibility/aria-list-and-listitem.html
new file mode 100644
index 0000000..cfd3cc4
--- /dev/null
+++ b/LayoutTests/accessibility/aria-list-and-listitem.html
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+<head>
+<link rel="stylesheet" href="../fast/js/resources/js-test-style.css">
+<script>
+var successfullyParsed = false;
+</script>
+<script src="../fast/js/resources/js-test-pre.js"></script>
+</head>
+<body id="body">
+
+<div role="list">
+<div role="listitem" aria-label="item 1"><img src='#' width=100 height=100></div>
+<div role="listitem" aria-label="item 2"><img src='#' width=100 height=100></div>
+</div>
+
+<p id="description"></p>
+<div id="console"></div>
+
+<script>
+
+ description("This tests that the ARIA roles of list and listitem map correctly to Mac accessibility roles.");
+
+ if (window.accessibilityController) {
+
+ // this text field should be required.
+ document.getElementById("body").focus();
+ var obj = accessibilityController.focusedElement;
+
+ shouldBe("obj.childAtIndex(0).role", "'AXRole: AXList'");
+ shouldBe("obj.childAtIndex(0).childAtIndex(0).role", "'AXRole: AXGroup'");
+ shouldBe("obj.childAtIndex(0).childAtIndex(1).role", "'AXRole: AXGroup'");
+ }
+
+ successfullyParsed = true;
+</script>
+
+<script src="../fast/js/resources/js-test-post.js"></script>
+</body>
+</html>
diff --git a/LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem.html b/LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem.html
deleted file mode 100644
index 461d8d4..0000000
--- a/LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
-<script>
-var successfullyParsed = false;
-</script>
-<script src="../../../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body id="body">
-
-<div role="list">
-<div role="listitem" aria-label="item 1"><img src='#' width=100 height=100></div>
-<div role="listitem" aria-label="item 2"><img src='#' width=100 height=100></div>
-</div>
-
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-
- description("This tests that the ARIA roles of list and listitem map correctly to Mac accessibility roles.");
-
- if (window.accessibilityController) {
-
- // this text field should be required.
- document.getElementById("body").focus();
- var obj = accessibilityController.focusedElement;
-
- shouldBe("obj.childAtIndex(0).role", "'AXRole: AXList'");
- shouldBe("obj.childAtIndex(0).childAtIndex(0).role", "'AXRole: AXGroup'");
- shouldBe("obj.childAtIndex(0).childAtIndex(1).role", "'AXRole: AXGroup'");
- }
-
- successfullyParsed = true;
-</script>
-
-<script src="../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
diff --git a/LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem-expected.txt b/LayoutTests/platform/mac/accessibility/aria-list-and-listitem-expected.txt
similarity index 100%
rename from LayoutTests/platform/mac-snowleopard/accessibility/aria-list-and-listitem-expected.txt
rename to LayoutTests/platform/mac/accessibility/aria-list-and-listitem-expected.txt
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list