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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/selection_util_test.js

Issue 541403002: Rename ChromeVox tests and utilities for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Clarify comment in .gypi file. Created 6 years, 3 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/browser/resources/chromeos/chromevox/common/selection_util_test.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/selection_util_test.js b/chrome/browser/resources/chromeos/chromevox/common/selection_util_test.js
deleted file mode 100644
index 7adbc57a8d348f4afc088f273d7eea93dc891b0e..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/chromeos/chromevox/common/selection_util_test.js
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Include test fixture.
-GEN_INCLUDE(['../testing/chromevox_unittest_base.js']);
-
-/**
- * Test fixture.
- * @constructor
- * @extends {ChromeVoxUnitTestBase}
- */
-function CvoxSelectionUtilUnitTest() {}
-
-CvoxSelectionUtilUnitTest.prototype = {
- __proto__: ChromeVoxUnitTestBase.prototype,
-
- /** @override */
- closureModuleDeps: [
- 'cvox.SelectionUtil'
- ]
-};
-
-TEST_F('CvoxSelectionUtilUnitTest', 'SimpleFindPos', function() {
- this.loadDoc(function() {/*!
- <div id="foo" style="position:absolute;top:50px">
- </div>
- */});
- element = $('foo');
- assertEquals(cvox.SelectionUtil.findPos_(element)[1], 50);
-});

Powered by Google App Engine
This is Rietveld 408576698