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

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

Issue 10543144: Remove old tracing code now that it has moved to third_party. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
« no previous file with comments | « chrome/browser/resources/tracing/overlay.js ('k') | chrome/browser/resources/tracing/profiling_view.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/tracing/overlay_test.html
diff --git a/chrome/browser/resources/tracing/overlay_test.html b/chrome/browser/resources/tracing/overlay_test.html
deleted file mode 100644
index 8747118a010230674614d843d6da74ed40a6a742..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/tracing/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>Overlay tests</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 tracing.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 tracing.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/tracing/overlay.js ('k') | chrome/browser/resources/tracing/profiling_view.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698