(A, B)
| 4596 | function tryUpgradeRequestToAPotentiallyTrustworthyURL(request) { |
| 4597 | } |
| 4598 | function sameOrigin(A, B) { |
| 4599 | if (A.origin === B.origin && A.origin === "null") { |
| 4600 | return true; |
| 4601 | } |
| 4602 | if (A.protocol === B.protocol && A.hostname === B.hostname && A.port === B.port) { |
| 4603 | return true; |
| 4604 | } |
| 4605 | return false; |
| 4606 | } |
| 4607 | function createDeferredPromise() { |
| 4608 | let res; |
| 4609 | let rej; |
no outgoing calls
no test coverage detected