| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-gc-event.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-gc-event.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-gc-event.html
|
| deleted file mode 100644
|
| index 5c1c2c457c2c1b52ed675de544ee0fcf0432b48c..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-gc-event.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../../http/tests/inspector/timeline-test.js"></script>
|
| -<script>
|
| -
|
| -function produceGarbageForGCEvents(callback)
|
| -{
|
| - if (window.testRunner) {
|
| - window.gc();
|
| - testRunner.layoutAndPaintAsyncThen(callback);
|
| - }
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.invokeAsyncWithTimeline("produceGarbageForGCEvents", validate);
|
| -
|
| - function validate()
|
| - {
|
| - var gcRecord = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.MajorGC) || InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.MinorGC)
|
| - if (gcRecord)
|
| - InspectorTest.addResult("SUCCESS: Found expected GC event record");
|
| - else
|
| - InspectorTest.addResult("FAIL: GC event record wasn't found");
|
| - InspectorTest.completeTest();
|
| - }
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="runTest()">
|
| -<p>
|
| -Tests the Timeline API instrumentation of a gc event
|
| -</p>
|
| -</body>
|
| -</html>
|
|
|