OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "image/x-icon": {"image": true}, | 74 "image/x-icon": {"image": true}, |
75 "image/x-xbitmap": {"image": true}, | 75 "image/x-xbitmap": {"image": true}, |
76 "font/ttf": {"font": true}, | 76 "font/ttf": {"font": true}, |
77 "font/otf": {"font": true}, | 77 "font/otf": {"font": true}, |
78 "font/woff": {"font": true}, | 78 "font/woff": {"font": true}, |
79 "font/woff2": {"font": true}, | 79 "font/woff2": {"font": true}, |
80 "font/truetype": {"font": true}, | 80 "font/truetype": {"font": true}, |
81 "font/opentype": {"font": true}, | 81 "font/opentype": {"font": true}, |
82 "application/octet-stream": {"font": true, "image": true}, | 82 "application/octet-stream": {"font": true, "image": true}, |
83 "application/font-woff": {"font": true}, | 83 "application/font-woff": {"font": true}, |
| 84 "application/font-woff2": {"font": true}, |
84 "application/x-font-woff": {"font": true}, | 85 "application/x-font-woff": {"font": true}, |
85 "application/x-font-type1": {"font": true}, | 86 "application/x-font-type1": {"font": true}, |
86 "application/x-font-ttf": {"font": true}, | 87 "application/x-font-ttf": {"font": true}, |
87 "application/x-truetype-font": {"font": true}, | 88 "application/x-truetype-font": {"font": true}, |
88 "text/javascript": {"script": true}, | 89 "text/javascript": {"script": true}, |
89 "text/ecmascript": {"script": true}, | 90 "text/ecmascript": {"script": true}, |
90 "application/javascript": {"script": true}, | 91 "application/javascript": {"script": true}, |
91 "application/ecmascript": {"script": true}, | 92 "application/ecmascript": {"script": true}, |
92 "application/x-javascript": {"script": true}, | 93 "application/x-javascript": {"script": true}, |
93 "application/json": {"script": true}, | 94 "application/json": {"script": true}, |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 var networkRequest = new WebInspector.NetworkRequest(this._manager._targ
et, requestId, url, documentURL, frameId, loaderId); | 569 var networkRequest = new WebInspector.NetworkRequest(this._manager._targ
et, requestId, url, documentURL, frameId, loaderId); |
569 networkRequest.initiator = initiator; | 570 networkRequest.initiator = initiator; |
570 return networkRequest; | 571 return networkRequest; |
571 } | 572 } |
572 } | 573 } |
573 | 574 |
574 /** | 575 /** |
575 * @type {!WebInspector.NetworkManager} | 576 * @type {!WebInspector.NetworkManager} |
576 */ | 577 */ |
577 WebInspector.networkManager; | 578 WebInspector.networkManager; |
OLD | NEW |