Chromium Code Reviews| Index: chrome/browser/resources/tracing/timeline_test.html |
| diff --git a/chrome/browser/resources/tracing/timeline_test.html b/chrome/browser/resources/tracing/timeline_test.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f8a121822a4aedd793adee80fbf3dec89c50cf99 |
| --- /dev/null |
| +++ b/chrome/browser/resources/tracing/timeline_test.html |
| @@ -0,0 +1,47 @@ |
| +<!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> |
|
nduca
2011/08/04 00:50:48
I think this file is deleted in ToT
dominich
2011/08/04 16:55:28
Done.
|
| +<head> |
| +<title></title> |
| +<link rel="stylesheet" href="timeline.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/event_target.js"></script> |
| +<script src="../shared/js/cr/ui.js"></script> |
| +<script src="fast_rect_renderer.js"></script> |
| +<script src="tracing_controller_tests.js"></script> |
| +<script src="sorted_array_utils.js"></script> |
| +<script src="timeline.js"></script> |
| +<script src="timeline_track.js"></script> |
| +<script src="timeline_model.js"></script> |
| +<!-- |
| +<script> |
| + |
| +goog.require('goog.testing.jsunit'); |
| + |
| +</script> |
| +--> |
| +</head> |
| +<body> |
| +<div id="sandbox"></div> |
| +<script> |
| + |
| +var sandbox = document.getElementById('sandbox'); |
| +var timeline; |
| + |
| +function testTimeline() { |
| + model = new gpu.TimelineModel(); |
| + model.importEvents(tracingControllerDataSets); |
| + timeline = new gpu.Timeline(); |
| + timeline.model = model; |
| + sandbox.appendChild(timeline); |
| +} |
| +document.addEventListener('DOMContentLoaded', testTimeline); |
| +</script> |
| + |
| +</body> |
| +</html> |