| Index: LayoutTests/fast/profiler/simple-no-level-change.html
|
| diff --git a/LayoutTests/fast/profiler/simple-no-level-change.html b/LayoutTests/fast/profiler/simple-no-level-change.html
|
| deleted file mode 100644
|
| index ae1b837686578f85a6311e868331929a41535f92..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/profiler/simple-no-level-change.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="resources/profiler-test-JS-resources.js"></script>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -if (window.internals)
|
| - internals.setJavaScriptProfilingEnabled(true);
|
| -
|
| -function startTest()
|
| -{
|
| - functionWichStartsAndStopsTheProfiler();
|
| -}
|
| -
|
| -function functionWichStartsAndStopsTheProfiler()
|
| -{
|
| - console.profile("A simple profile test where no scope chagnes");
|
| -
|
| - for (var i = 0; i < 10000000; i++)
|
| - var b = i + 2;
|
| -
|
| - document.getElementById("output");
|
| -
|
| - console.profileEnd();
|
| - printProfilesDataWithoutTime();
|
| -}
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="startTest()">
|
| -This page's JavaScript starts and stops profiling from the same scope.
|
| -<br>
|
| -<br>
|
| -To run this test manually, load it in the browser then load the WebInspector and look at
|
| -the profile. There should be no function calls between console.profile() and
|
| -console.profileEnd().
|
| -<div id="output"></div>
|
| -</body>
|
| -</html>
|
|
|