Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1454)

Unified Diff: chrome/test/data/chromeos/oobe_webui_browsertest.js

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Comments addressed. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/chromeos/oobe_webui_browsertest.js
diff --git a/chrome/test/data/chromeos/oobe_webui_browsertest.js b/chrome/test/data/chromeos/oobe_webui_browsertest.js
index d892530b8bcc28819a12d5cc505d9a74607227e5..fa685e8eec4216a2471cb3215220fd8d2a5fc60e 100644
--- a/chrome/test/data/chromeos/oobe_webui_browsertest.js
+++ b/chrome/test/data/chromeos/oobe_webui_browsertest.js
@@ -43,11 +43,20 @@ OobeWebUITest.prototype = {
setUp: function() {
testing.Test.prototype.setUp.call(this);
- // Polymer issue https://github.com/Polymer/polymer/issues/1081
+ /* False positives. http://crbug.com/501489 */
this.accessibilityAuditConfig.ignoreSelectors('badAriaAttributeValue',
- 'PAPER-BUTTON');
- this.accessibilityAuditConfig.ignoreSelectors('badAriaAttributeValue',
- '#progressContainer');
+ '#cancelConfirmDlg');
+ this.accessibilityAuditConfig.ignoreSelectors(
+ 'nonExistentAriaLabelledbyElement',
+ '#cancelConfirmDlg');
+
+ /**
+ * False positive AX_FOCUS_01.
+ * https://github.com/GoogleChrome/accessibility-developer-tools/issues/171
+ */
+ this.accessibilityAuditConfig.ignoreSelectors(
+ 'focusableElementNotVisibleAndNotAriaHidden',
+ '#iconButton');
},
};

Powered by Google App Engine
This is Rietveld 408576698