Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 Continue (in bed) | |
101 Switching Protocols (in bed) | |
102 Processing (in bed) | |
200 OK (in bed) | |
201 Created (in bed) | |
202 Accepted (in bed) | |
203 Non-Authoritative Information (in bed) | |
204 No Content (in bed) | |
205 Reset Content (in bed) | |
206 Partial Content (in bed) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var countries = { | |
ae: 'United Arab Emirates', | |
ag: 'Antigua and Barbuda', | |
ai: 'Anguilla', | |
al: 'Albania', | |
am: 'Armenia', | |
ao: 'Angola', | |
ar: 'Argentina', | |
at: 'Austria', | |
au: 'Australia', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// performance.js | |
// https://github.com/bgrins/devtools-snippets | |
// Print out window.performance information. | |
// https://developer.mozilla.org/en-US/docs/Navigation_timing | |
(function () { | |
var t = window.performance.timing; | |
var timings = []; |