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

Unified Diff: chrome/test/data/webui/hung_renderer_dialog_test.js

Issue 8497001: Revert 108924 - Tests for WebUI Hung Renderer Dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/webui/hung_renderer_dialog_ui_test-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/hung_renderer_dialog_test.js
===================================================================
--- chrome/test/data/webui/hung_renderer_dialog_test.js (revision 108959)
+++ chrome/test/data/webui/hung_renderer_dialog_test.js (working copy)
@@ -1,63 +0,0 @@
-// Copyright (c) 2011 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.
-
-/**
- * Test fixture for generated tests.
- * @extends {testing.Test}
- */
-function HungRendererDialogUITest() {};
-
-HungRendererDialogUITest.prototype = {
- __proto__: testing.Test.prototype,
-
- /**
- * Define the C++ fixture class and include it.
- * @type {?string}
- * @override
- */
- typedefCppFixture: 'HungRendererDialogUITest',
-};
-
-// Include the bulk of c++ code.
-GEN('#include "chrome/test/data/webui/hung_renderer_dialog_ui_test-inl.h"');
-
-// Constructors and destructors must be provided in .cc to prevent clang errors.
-GEN('HungRendererDialogUITest::HungRendererDialogUITest() {}');
-GEN('HungRendererDialogUITest::~HungRendererDialogUITest() {}');
-
-/**
- * Confirms that the URL is correct.
- */
-TEST_F('HungRendererDialogUITest', 'testURL', function() {
- expectEquals(chrome.expectedUrl, window.location.href);
-});
-
-/**
- * Confirms that the theme graphic is loaded and is of a reasonable size. This
- * validates that we are integrating properly with the theme source.
- */
-TEST_F('HungRendererDialogUITest', 'testThemeGraphicIntegration', function() {
- var themeGraphic = $('theme-graphic');
- assertNotEquals(null, themeGraphic);
- expectGT(themeGraphic.width, 0);
- expectGT(themeGraphic.height, 0);
-});
-
-/**
- * Confirms that the DOM was updated such that a list item representing the
- * frozen tab was added to the list of frozen tabs. Also confirms that the list
- * item text content is the title of the frozen tab.
- */
-TEST_F('HungRendererDialogUITest', 'testHungRenderer', function() {
- var tabTable = $('tab-table');
- assertNotEquals(null, tabTable);
- assertGT(tabTable.childElementCount, 0);
-
- var children = tabTable.getElementsByTagName('*');
- assertNotEquals(null, children);
- var titleElement = children[0];
- assertNotEquals(null, titleElement);
- expectEquals(chrome.expectedTitle, titleElement.textContent);
-});
-
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/webui/hung_renderer_dialog_ui_test-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698