| Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
|
| index 5012aa2a70832e985b48181dc96edd8d06910717..86cde8e4d839ad93127813f79614f41640237f82 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
|
| @@ -17,6 +17,8 @@ function test() {
|
|
|
| function onNodeInserted(node)
|
| {
|
| + if (node.dataGrid !== UI.panels.network._networkLogView._dataGrid)
|
| + return;
|
| if (node.request().name() !== "empty.html?xhr")
|
| return;
|
| xhrNode = node;
|
| @@ -45,7 +47,7 @@ function test() {
|
|
|
| InspectorTest.recordNetwork();
|
| InspectorTest.networkManager.addEventListener(SDK.NetworkManager.Events.RequestFinished, onRequestFinished);
|
| - InspectorTest.addSniffer(UI.panels.network._networkLogView._dataGrid, "insertChild", onNodeInserted, true);
|
| + InspectorTest.addSniffer(UI.SortableDataGridNode.prototype, "insertChild", onNodeInserted, true);
|
| InspectorTest.NetworkAgent.setCacheDisabled(true, InspectorTest.evaluateInPage.bind(null, "sendXHRRequest()"));
|
| }
|
| </script>
|
|
|