docs: fix inline code quoting (#4992)
This commit is contained in:
parent
fcbfbe6fa1
commit
df53cb2f83
|
|
@ -437,7 +437,7 @@ Defaults to `false`.
|
||||||
|
|
||||||
This method waits for [actionability](./actionability.md) checks, then tries to scroll element into view, unless it is
|
This method waits for [actionability](./actionability.md) checks, then tries to scroll element into view, unless it is
|
||||||
completely visible as defined by
|
completely visible as defined by
|
||||||
[IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API)'s ```ratio```.
|
[IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API)'s `ratio`.
|
||||||
|
|
||||||
Throws when `elementHandle` does not point to an element
|
Throws when `elementHandle` does not point to an element
|
||||||
[connected](https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected) to a Document or a ShadowRoot.
|
[connected](https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected) to a Document or a ShadowRoot.
|
||||||
|
|
|
||||||
2
types/types.d.ts
vendored
2
types/types.d.ts
vendored
|
|
@ -6009,7 +6009,7 @@ export interface ElementHandle<T=Node> extends JSHandle<T> {
|
||||||
/**
|
/**
|
||||||
* This method waits for [actionability](https://github.com/microsoft/playwright/blob/master/docs/actionability.md) checks, then tries to scroll element into view, unless it is
|
* This method waits for [actionability](https://github.com/microsoft/playwright/blob/master/docs/actionability.md) checks, then tries to scroll element into view, unless it is
|
||||||
* completely visible as defined by
|
* completely visible as defined by
|
||||||
* [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API)'s ```ratio```.
|
* [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API)'s `ratio`.
|
||||||
*
|
*
|
||||||
* Throws when `elementHandle` does not point to an element
|
* Throws when `elementHandle` does not point to an element
|
||||||
* [connected](https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected) to a Document or a ShadowRoot.
|
* [connected](https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected) to a Document or a ShadowRoot.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue