Index: WebCore/inspector/front-end/ResourcesPanel.js |
=================================================================== |
--- WebCore/inspector/front-end/ResourcesPanel.js (revision 67698) |
+++ WebCore/inspector/front-end/ResourcesPanel.js (working copy) |
@@ -857,7 +857,7 @@ |
var title = document.createElement("span"); |
title.className = "resource-timing-bar-title"; |
- if (i >= rows.length - 2) |
+ if (total - rows[i].end < rows[i].start) |
title.style.right = (scale * (total - rows[i].end) + 3) + "px"; |
else |
title.style.left = (scale * rows[i].start + 3) + "px"; |