Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / timeline / timeline-script-tag-1.html
index 9aa27a8..a98d2f1 100644 (file)
@@ -32,15 +32,6 @@ function test()
             if (record.type() === WebInspector.TimelineModel.RecordType.EvaluateScript)
                 InspectorTest.printTimelineRecordProperties(record);
             else if (record.type() === WebInspector.TimelineModel.RecordType.ParseHTML) {
-                var children = [];
-                var skipCategories = { rendering: true, painting: true };
-                for (var i = 0; i < record.children().length; ++i) {
-                    var modelRecord = new WebInspector.TimelineModel.RecordImpl(WebInspector.panels.timeline._model, record.children()[i], null);
-                    var uiUtils = WebInspector.panels.timeline._uiUtils;
-                    if (!skipCategories[uiUtils.categoryForRecord(modelRecord).name])
-                        children.push(record.children()[i]);
-                }
-                record._children = children;
                 InspectorTest.dumpTimelineRecord(record, undefined, undefined, [
                     "ParseHTML",
                     "EvaluateScript",