当我从DDMS运行systrace时(在Windows上),生成的html文件包含一个javascript错误,导致无法在浏览器中看到结果。数据存在于html文件中,但如果不在浏览器中查看,则很难使用。关于什么是错的任何想法?我不认为我应该修复javascript,必须有一些systrace / adt / ddms IMO,我只是想不出来。
已经报告过这种情况,请参阅here。
这是错误(来自Chrome):
Uncaught TypeError: undefined is not a function
这是错误来自的javascript:
document.addEventListener('DOMContentLoaded', function() {
if (!linuxPerfData)
return;
var m = new tracing.model(linuxPerfData); //This line throws the exception.
var timelineViewEl = document.querySelector('.view');
tracing.ui.decorate(timelineViewEl, tracing.TimelineView);
timelineViewEl.model = m;
timelineViewEl.tabIndex = 1;
timelineViewEl.timeline.focusElement = timelineViewEl;
});