Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: netlog_viewer/netlog_viewer/events_view_test.html

Issue 3011363002: Apply Chromium changes up to commit 0036296a1128ac9cbefeaff51c8df831ec421c36 (Closed)
Patch Set: README Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698