Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / timeline / timeline-dom-content-loaded-event.html
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/timeline-test.js"></script>
5 <script>
6
7 function test()
8 {
9     InspectorTest.startTimeline(function() { InspectorTest.reloadPage(pageReloaded); });
10
11     function pageReloaded()
12     {
13         InspectorTest.stopTimeline(finish);
14     }
15
16     function finish()
17     {
18         InspectorTest.printTimelineRecords("MarkDOMContent");
19         InspectorTest.completeTest();
20     }
21 }
22
23 </script>
24 </head>
25
26 <body onload="runTest()">
27 <p>
28 Tests the DOM content loaded event.
29 </p>
30
31 </body>
32 </html>