()
| 13553 | } |
| 13554 | // Returns request’s subresource integrity metadata, which is a |
| 13555 | // cryptographic hash of the resource being fetched. Its value |
| 13556 | // consists of multiple hashes separated by whitespace. [SRI] |
| 13557 | get integrity() { |
| 13558 | webidl.brandCheck(this, _Request); |
| 13559 | return this[kState].integrity; |
| 13560 | } |
| 13561 | // Returns a boolean indicating whether or not request can outlive the |
| 13562 | // global in which it was created. |
| 13563 | get keepalive() { |
| 13564 | webidl.brandCheck(this, _Request); |
| 13565 | return this[kState].keepalive; |
| 13566 | } |
| 13567 | // Returns a boolean indicating whether or not request is for a reload |
| 13568 | // navigation. |
| 13569 | get isReloadNavigation() { |
| 13570 | webidl.brandCheck(this, _Request); |
| 13571 | return this[kState].reloadNavigation; |
| 13572 | } |
| 13573 | // Returns a boolean indicating whether or not request is for a history |
| 13574 | // navigation (a.k.a. back-forward navigation). |
| 13575 | get isHistoryNavigation() { |
| 13576 | webidl.brandCheck(this, _Request); |
| 13577 | return this[kState].historyNavigation; |
| 13578 | } |
| 13579 | // Returns the signal associated with request, which is an AbortSignal |
| 13580 | // object indicating whether or not request has been aborted, and its |
| 13581 | // abort event handler. |
no test coverage detected