Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / cvox2 / background / output_test.extjs
blob443885c3735b110630a06d6d976960221ab7ff55
1 // Copyright 2014 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 GEN_INCLUDE(['../../testing/assert_additions.js']);
6 GEN_INCLUDE(['../../testing/chromevox_next_e2e_test_base.js']);
8 /**
9  * Test fixture for output.js.
10  * @constructor
11  * @extends {ChromeVoxNextE2ETestBase}
12  */
13 function OutputE2ETest() {
14   ChromeVoxNextE2ETest.call(this);
17 OutputE2ETest.prototype = {
18   __proto__: ChromeVoxNextE2ETest.prototype,
20   /** @override */
21   setUp: function() {
22     window.Dir = AutomationUtil.Dir;
23   }
26 TEST_F('OutputE2ETest', 'RenderBasic', function() {
27   this.runWithLoadedTree('<a href="#">Click here</a>',
28     function(root) {
29       var link = root.firstChild.firstChild;
30       var range = cursors.Range.fromNode(link);
31       var o = new Output().withSpeechAndBraille(range, null, 'navigate');
32       assertEqualsJSON({string_: 'Click here Link', 'spans_': [
33                         {value: 'name', start: 0, end: 10},
34                         // Link earcon.
35                         {value: {}, start: 11, end: 15}
36           ]},
37           o.getBuffer());
38   });
39 });