diff options
author | Steve Block <steveblock@google.com> | 2010-03-17 17:37:09 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-03-17 17:41:49 +0000 |
commit | 7c58da758900ab1a48137f0e0726a36d671aa0a4 (patch) | |
tree | 310ccc98256b4547e8b03e90295fe4cb5dbfa284 /tests | |
parent | 071862f0cb397cd2bf4a019ebee1db1f0db6dbe0 (diff) | |
download | frameworks_base-7c58da758900ab1a48137f0e0726a36d671aa0a4.zip frameworks_base-7c58da758900ab1a48137f0e0726a36d671aa0a4.tar.gz frameworks_base-7c58da758900ab1a48137f0e0726a36d671aa0a4.tar.bz2 |
Updates the status of some HTML5 storage layout tests in the DumpRenderTree skipped list
Bug: 2079807
Change-Id: I2bff326e68d8ac761fd2c4628fab8b10d255c7dc
Diffstat (limited to 'tests')
-rw-r--r-- | tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java index 297b963..506de83 100644 --- a/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java +++ b/tests/DumpRenderTree/src/com/android/dumprendertree/FileFilter.java @@ -95,7 +95,8 @@ public class FileFilter { ignoreResultList.add("http/tests/appcache/max-size.html"); // no layoutTestController.setAppCacheMaximumSize ignoreResultList.add("http/tests/appcache/manifest-with-empty-file.html"); // flaky ignoreResultList.add("http/tests/appcache/whitelist-wildcard.html"); // file not found - ignoreResultList.add("storage/database-lock-after-reload.html"); // failure + ignoreResultList.add("storage/database-lock-after-reload.html"); // Succeeds but DumpRenderTree does not read result correctly + ignoreResultList.add("storage/hash-change-with-xhr.html"); // Succeeds but DumpRenderTree does not read result correctly // Will always fail ignoreResultList.add("dom/svg/level3/xpath"); // XPath not supported @@ -116,6 +117,9 @@ public class FileFilter { ignoreResultList.add("fast/workers/shared-worker-shared.html"); // shared workers not supported ignoreResultList.add("fast/workers/shared-worker-simple.html"); // shared workers not supported ignoreResultList.add("fast/xpath"); // XPath not supported + ignoreResultList.add("storage/domstorage/localstorage/private-browsing-affects-storage.html"); // private browsing not supported + ignoreResultList.add("storage/domstorage/sessionstorage/private-browsing-affects-storage.html"); // private browsing not supported + ignoreResultList.add("storage/private-browsing-readonly.html"); // private browsing not supported // TODO: These need to be triaged ignoreResultList.add("fast/css/case-transform.html"); // will not fix #619707 @@ -189,9 +193,6 @@ public class FileFilter { ignoreResultList.add("fast/replaced/image-map.html"); // requires eventSender.mouseDown(),mouseUp() ignoreResultList.add("fast/text/plain-text-line-breaks.html"); // extra spacing because iFrames rendered next to each other on Apple ignoreResultList.add("profiler"); // profiler is not supported - ignoreResultList.add("storage/domstorage/localstorage/private-browsing-affects-storage.html"); // No notion of private browsing. - ignoreResultList.add("storage/domstorage/sessionstorage/private-browsing-affects-storage.html"); // No notion of private browsing. - ignoreResultList.add("storage/private-browsing-readonly.html"); // No notion of private browsing. ignoreResultList.add("svg"); // svg is not supported } |