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