| Index: chrome/test/data/webui/history_browsertest.js
|
| diff --git a/chrome/test/data/webui/history_browsertest.js b/chrome/test/data/webui/history_browsertest.js
|
| index 8aacf42126f8f40d756de950595e3fe37dc86e2a..03350b71cc180d4c46e048d6f577cb787de46d2e 100644
|
| --- a/chrome/test/data/webui/history_browsertest.js
|
| +++ b/chrome/test/data/webui/history_browsertest.js
|
| @@ -787,7 +787,7 @@ TEST_F('HistoryWebUIRealBackendTest', 'basic', function() {
|
|
|
| TEST_F('HistoryWebUIRealBackendTest', 'atLeastOneFocusable', function() {
|
| var results = document.querySelectorAll('#results-display [tabindex="0"]');
|
| - expectEquals(1, results.length);
|
| + expectGE(results.length, 1);
|
| testDone();
|
| });
|
|
|
| @@ -1004,7 +1004,7 @@ TEST_F('HistoryWebUIDeleteProhibitedTest', 'deleteProhibited', function() {
|
|
|
| TEST_F('HistoryWebUIDeleteProhibitedTest', 'atLeastOneFocusable', function() {
|
| var results = document.querySelectorAll('#results-display [tabindex="0"]');
|
| - expectEquals(1, results.length);
|
| + expectGE(results.length, 1);
|
| testDone();
|
| });
|
|
|
|
|