Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/json-preview.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/json-preview.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/json-preview.html |
| index 576ae9322fac1868e345c3bf721ff218f56ad9db..f42f98c18f590f6ccafe328b098756e472da2176 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/json-preview.html |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/json-preview.html |
| @@ -20,7 +20,8 @@ function test() |
| var previewView = new WebInspector.RequestPreviewView(request, null); |
| previewView._createPreviewView(function(previewer) { |
| - InspectorTest.addResult("Its previewer is the JSON previewer: " + (previewer && previewer instanceof WebInspector.JSONView)); |
| + InspectorTest.addResult("Its previewer is searchable: " + (previewer && previewer instanceof WebInspector.SearchableView)); |
|
lushnikov
2016/04/22 19:43:00
lets write a test that does actual search. (You ca
allada
2016/04/25 23:48:48
Done.
|
| + InspectorTest.addResult("Its previewer is the JSON previewer: " + (previewer && previewer._searchProvider && previewer._searchProvider instanceof WebInspector.JSONView)); |
| done(); |
| }); |
| }); |