summaryrefslogtreecommitdiffstats
path: root/tests/DumpRenderTree
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-04-23 13:25:40 -0700
committerSteve Block <steveblock@google.com>2010-04-23 13:34:00 -0700
commit1d9b466568a6daec537c4d946ed174f6910998c4 (patch)
treefcf0afa137d6caf52622b4268f59497d326a63fa /tests/DumpRenderTree
parent24ea8a8e26e1ea8dafab954c3a3b6317d1e27716 (diff)
downloadframeworks_base-1d9b466568a6daec537c4d946ed174f6910998c4.zip
frameworks_base-1d9b466568a6daec537c4d946ed174f6910998c4.tar.gz
frameworks_base-1d9b466568a6daec537c4d946ed174f6910998c4.tar.bz2
Updates DumpRenderTree ignore list to reflect status of touch event tests at current WebKit revision (r54731).
Touch event tests were added to the Android tree in https://android-git.corp.google.com/g/49637 Change-Id: I6c28b137fc70a26a1db94cdb72e283629eaaa2bf
Diffstat (limited to 'tests/DumpRenderTree')
-rw-r--r--tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
index f4b7db9..221b218 100644
--- a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
+++ b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java
@@ -79,9 +79,11 @@ public class FileFilter {
};
static void fillIgnoreResultList() {
- // This first block of tests are for HTML5 features, for which Android
+ // This first block of tests are for features for which Android
// should pass all tests. They are skipped only temporarily.
// TODO: Fix these failing tests and remove them from this list.
+ ignoreResultList.add("fast/events/touch/basic-touch-events.html"); // Requires multi-touch
+ ignoreResultList.add("fast/events/touch/send-oncancel-event.html"); // Expected output is incorrect upstream. See WebKit bug 37830.
ignoreResultList.add("http/tests/appcache/empty-manifest.html"); // flaky
ignoreResultList.add("http/tests/appcache/foreign-iframe-main.html"); // flaky - skips states
ignoreResultList.add("http/tests/appcache/manifest-with-empty-file.html"); // flaky
@@ -89,6 +91,7 @@ public class FileFilter {
ignoreResultList.add("storage/hash-change-with-xhr.html"); // Succeeds but DumpRenderTree does not read result correctly
// Expected failures due to unsupported features.
+ ignoreResultList.add("fast/events/touch/touch-coords-in-zoom-and-scroll.html"); // Requires eventSender.zoomPageIn(),zoomPageOut()
ignoreResultList.add("fast/workers"); // workers not supported
ignoreResultList.add("http/tests/eventsource/workers"); // workers not supported
ignoreResultList.add("http/tests/workers"); // workers not supported
@@ -130,9 +133,6 @@ public class FileFilter {
ignoreResultList.add("fast/events/window-events-bubble.html"); // requires eventSender.mouseDown(),mouseUp()
ignoreResultList.add("fast/events/window-events-bubble2.html"); // requires eventSender.mouseDown(),mouseUp()
ignoreResultList.add("fast/events/window-events-capture.html"); // requires eventSender.mouseDown(),mouseUp()
- ignoreResultList.add("fast/events/touch/basic-multi-touch-events.html"); // Requires multi-touch
- ignoreResultList.add("fast/events/touch/touch-target.html"); // Requires multi-touch
- ignoreResultList.add("fast/events/touch/touch-coords-in-zoom-and-scroll.html"); // Requires eventSender.zoomPageIn(),zoomPageOut()
ignoreResultList.add("fast/forms/drag-into-textarea.html"); // requires eventSender.mouseDown(),mouseUp()
ignoreResultList.add("fast/forms/focus-control-to-page.html"); // http://b/716638
ignoreResultList.add("fast/forms/focus2.html"); // http://b/735111