(url, base)
| 8 | } |
| 9 | |
| 10 | function bURL(url, base) { |
| 11 | setBase(base); |
| 12 | const a = document.createElement("a"); |
| 13 | a.setAttribute("href", url); |
| 14 | return a; |
| 15 | } |
| 16 | |
| 17 | function runURLTests(urlTests) { |
| 18 | for (const expected of urlTests) { |
no test coverage detected