()
| 608 | |
| 609 | // Returns the URL of request as a string. |
| 610 | get url () { |
| 611 | webidl.brandCheck(this, Request) |
| 612 | |
| 613 | // The url getter steps are to return this’s request’s URL, serialized. |
| 614 | return URLSerializer(this.#state.url) |
| 615 | } |
| 616 | |
| 617 | // Returns a Headers object consisting of the headers associated with request. |
| 618 | // Note that headers added in the network layer by the user agent will not |
nothing calls this directly
no test coverage detected