Index: LayoutTests/inspector/timeline/timeline-load-event.html |
diff --git a/LayoutTests/inspector/timeline/timeline-load-event.html b/LayoutTests/inspector/timeline/timeline-load-event.html |
deleted file mode 100644 |
index a1c8c0d067e089918e0de2ea3c071948eb8c223b..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/timeline/timeline-load-event.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/timeline-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- InspectorTest.startTimeline(function() { InspectorTest.reloadPage(pageReloaded); }); |
- |
- function pageReloaded() |
- { |
- InspectorTest.stopTimeline(finish); |
- } |
- |
- function finish() |
- { |
- InspectorTest.addResult("Model records:"); |
- InspectorTest.printTimelineRecords("MarkDOMContent"); |
- InspectorTest.printTimelineRecords("MarkLoad"); |
- InspectorTest.addResult("Timestamp records:"); |
- InspectorTest.printTimestampRecords("MarkDOMContent"); |
- InspectorTest.printTimestampRecords("MarkLoad"); |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests the load event. |
-</p> |
- |
-</body> |
-</html> |