Index: LayoutTests/inspector/jump-to-previous-editing-location.html |
diff --git a/LayoutTests/inspector/jump-to-previous-editing-location.html b/LayoutTests/inspector/jump-to-previous-editing-location.html |
index 3fc1a1eb382ef62c344e3d279799cd8897c8c260..e041dc501c490b8123105217774b063f956ab940 100644 |
--- a/LayoutTests/inspector/jump-to-previous-editing-location.html |
+++ b/LayoutTests/inspector/jump-to-previous-editing-location.html |
@@ -13,9 +13,6 @@ |
var sourcesView = panel._sourcesView; |
var historyManager = sourcesView._historyManager; |
var editorContainer = sourcesView._editorContainer; |
- InspectorTest.addSniffer(historyManager._historyManager, "filterOut", function() { |
- InspectorTest.addResult("executed SimpleHistoryManager.filterOut; activeEntryIndex = " + historyManager._historyManager._activeEntryIndex); |
- }, true); |
function rollback() |
{ |
@@ -185,7 +182,7 @@ |
var simpleHistoryManager = historyManager._historyManager; |
var entries = simpleHistoryManager._entries; |
InspectorTest.addResult("=== SimpleHistoryManager state " + title + " ==="); |
- InspectorTest.addResult("entries count: " + entries.length + " active entry index: " + simpleHistoryManager._activeEntryIndex); |
+ InspectorTest.addResult("entries count: " + entries.length); |
for (var i = entries.length - 1; i >= 0; --i) { |
var position = entries[i]._positionHandle.resolve(); |
var positionText = position ? "{line: " + position.lineNumber + ", column: " + position.columnNumber + "}" : position + ""; |