2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / profiler / nested-start-and-stop-profiler.html
blob308eadecbc194668ecf58da4b23e9423c0159a3a
1 <html>
2 <head>
3 <script src="resources/profiler-test-JS-resources.js"></script>
4 <script>
5 if (window.layoutTestController) {
6 layoutTestController.dumpAsText();
7 layoutTestController.setJavaScriptProfilingEnabled(true);
10 function startTest()
12 console.profile("Start the profiler the first time.");
13 console.profile("Start the profiler the second time.");
14 console.profile("Start the profiler the third time.");
15 endTest();
16 endTest();
17 endTest();
19 </script>
20 </head>
22 <body onload="startTest()">
23 This page's JavaScript calls console.profile() three times then console.profileEnd()
24 three times.
25 <br>
26 <br>
27 To run this test manually, load it in the browser then load the WebInspector and look at
28 the profile. In the profiler there should be three profiles.
29 <div id="output"></div>
30 </body>
31 </html>