()
| 691 | // which is a string indicating how the request will |
| 692 | // interact with the browser’s cache when fetching. |
| 693 | get cache () { |
| 694 | webidl.brandCheck(this, Request) |
| 695 | |
| 696 | // The cache getter steps are to return this’s request’s cache mode. |
| 697 | return this.#state.cache |
| 698 | } |
| 699 | |
| 700 | // Returns the redirect mode associated with request, |
| 701 | // which is a string indicating how redirects for the |
no test coverage detected