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

Unified Diff: chrome/browser/resources/gpu_internals/overlay_test.html

Issue 7555005: Moving the contents of chrome://gpu Profiling to chrome://tracing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 4 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/gpu_internals/overlay_test.html
diff --git a/chrome/browser/resources/gpu_internals/overlay_test.html b/chrome/browser/resources/gpu_internals/overlay_test.html
deleted file mode 100644
index c06572ce9d8bb54d69a1172ebde5d484bddd8ef8..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/gpu_internals/overlay_test.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2010 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.
--->
-<html>
-<head>
-<title></title>
-<link rel="stylesheet" href="overlay.css">
-<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>
-<script src="../shared/js/cr.js"></script>
-<script src="../shared/js/cr/ui.js"></script>
-<script src="overlay.js"></script>
-<script>
-
-goog.require('goog.testing.jsunit');
-
-</script>
-
-</head>
-<body>
-<div id="sandbox"></div>
-<script>
-
-var sandbox = document.getElementById('sandbox');
-var overlay;
-
-function testShowHideUnparented() {
- overlay = new gpu.Overlay();
- overlay.innerHTML =
- '<h3>Hello</h3>B1:<button>foo</button></p>B2:<button>blah</button>';
- overlay.visible = true;
- assertNotEquals(overlay.parentNode, null);
-
- overlay.visible = false;
- assertEquals(overlay.parentNode, null);
-}
-
-function testShowHideParented() {
- overlay = new gpu.Overlay();
- overlay.innerHTML =
- '<h3>Hello</h3>B1:<button>foo</button></p>B2:<button>blah</button>';
- document.body.appendChild(overlay);
- overlay.visible = true;
- assertNotEquals(overlay.parentNode, null);
-
- overlay.visible = false;
- assertEquals(overlay.parentNode, document.body);
-}
-
-</script>
-
-</body>
-</html>
-
« no previous file with comments | « chrome/browser/resources/gpu_internals/overlay.js ('k') | chrome/browser/resources/gpu_internals/profiling_view.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698