Fix search results being clipped in app list.
[chromium-blink-merge.git] / ui / file_manager / audio_player / js / error_util.js
blob38e37f271d75e33f3337c0190ff4cb1496c5e9f9
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6 * This variable is checked in SelectFileDialogExtensionBrowserTest.
7 * @type {number}
8 */
9 window.JSErrorCount = 0;
11 /**
12 * Counts uncaught exceptions.
14 window.onerror = function() { window.JSErrorCount++; };