diff options
author | aboxhall@chromium.org <aboxhall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 16:27:13 +0000 |
---|---|---|
committer | aboxhall@chromium.org <aboxhall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 16:27:13 +0000 |
commit | e8337be1a0dc9a85fd0116e34a467ee97e0c239b (patch) | |
tree | 3cce5d1e1f1ea42d49dbef4449f7abc15e3dbef4 /content/browser/accessibility | |
parent | 07f300d643a7275b9f348d9148cceb46f8212a97 (diff) | |
download | chromium_src-e8337be1a0dc9a85fd0116e34a467ee97e0c239b.zip chromium_src-e8337be1a0dc9a85fd0116e34a467ee97e0c239b.tar.gz chromium_src-e8337be1a0dc9a85fd0116e34a467ee97e0c239b.tar.bz2 |
Disable DumpAccessibilityTree tests which are broken by adding new elements in the Blink a11y tree
BUG=98976
R=dmazzoni@chromium.org
Review URL: https://codereview.chromium.org/196723006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256551 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/accessibility')
-rw-r--r-- | content/browser/accessibility/dump_accessibility_tree_browsertest.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc index debe018..d60abbb 100644 --- a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc +++ b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc @@ -268,7 +268,10 @@ IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); } -IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCombobox) { +// crbug.com/98976 will cause new elements to be added to the Blink a11y tree +// Re-baseline after the Blink change goes in +IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, + DISABLED_AccessibilityAriaCombobox) { RunTest(FILE_PATH_LITERAL("aria-combobox.html")); } @@ -413,7 +416,10 @@ IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); } -IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTypes) { +// crbug.com/98976 will cause new elements to be added to the Blink a11y tree +// Re-baseline after the Blink change goes in +IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, + DISABLED_AccessibilityInputTypes) { RunTest(FILE_PATH_LITERAL("input-types.html")); } |