Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / webui / chromeos / certificate_manager_dialog_browsertest.js
bloba50525d5f8a655c1b6349489e3c2716e134db857
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  * TestFixture for kiosk certification manager dialog WebUI testing.
7  * @extends {testing.Test}
8  * @constructor
9  */
10 function CertificateManagerDialogWebUITest() {}
12 CertificateManagerDialogWebUITest.prototype = {
13   __proto__: testing.Test.prototype,
15   /**
16    * Browse to the certification manager dialog page.
17    */
18   browsePreload: 'chrome://certificate-manager/',
21 // Sanity test of the WebUI could be opened with no errors.
22 TEST_F('CertificateManagerDialogWebUITest', 'Basic', function() {
23   assertEquals(this.browsePreload, document.location.href);
24 });