| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2016 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <script> | 8 <script> |
| 9 'use strict'; | 9 'use strict'; |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'time': '953534906', | 56 'time': '953534906', |
| 57 'type': EventType.HTTP_TRANSACTION_SEND_REQUEST | 57 'type': EventType.HTTP_TRANSACTION_SEND_REQUEST |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 'params': { | 60 'params': { |
| 61 'headers': [ | 61 'headers': [ |
| 62 'Host: www.google.com', | 62 'Host: www.google.com', |
| 63 'Connection: keep-alive', | 63 'Connection: keep-alive', |
| 64 'User-Agent: Mozilla/5.0', | 64 'User-Agent: Mozilla/5.0', |
| 65 'Accept: text/html', | 65 'Accept: text/html', |
| 66 'Accept-Encoding: gzip,deflate,sdch', | 66 'Accept-Encoding: gzip,deflate', |
| 67 'Accept-Language: en-US,en;q=0.8', | 67 'Accept-Language: en-US,en;q=0.8', |
| 68 'Accept-Charset: ISO-8859-1', | 68 'Accept-Charset: ISO-8859-1', |
| 69 'X-Random-Header-With-Quotes: "Quoted String"""', | 69 'X-Random-Header-With-Quotes: "Quoted String"""', |
| 70 ], | 70 ], |
| 71 'line': 'GET / HTTP/1.1\r\n' | 71 'line': 'GET / HTTP/1.1\r\n' |
| 72 }, | 72 }, |
| 73 'phase': EventPhase.PHASE_NONE, | 73 'phase': EventPhase.PHASE_NONE, |
| 74 'source': { | 74 'source': { |
| 75 'id': id, | 75 'id': id, |
| 76 'type': EventSourceType.URL_REQUEST | 76 'type': EventSourceType.URL_REQUEST |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 eventsView.setFilterText_('text sort:id "more text"'); | 252 eventsView.setFilterText_('text sort:id "more text"'); |
| 253 $(EventsView.SORT_BY_ID_ID).click(); | 253 $(EventsView.SORT_BY_ID_ID).click(); |
| 254 chai.assert.strictEqual('-sort:id text "more text"', | 254 chai.assert.strictEqual('-sort:id text "more text"', |
| 255 eventsView.getFilterText_()); | 255 eventsView.getFilterText_()); |
| 256 | 256 |
| 257 unsetNetLogConstantsForTest(); | 257 unsetNetLogConstantsForTest(); |
| 258 }); | 258 }); |
| 259 }); | 259 }); |
| 260 })(); // Anonymous namespace | 260 })(); // Anonymous namespace |
| 261 </script> | 261 </script> |
| OLD | NEW |