Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

api(dotnet): hide reducedMotion from csharp until C# 1.11 release #6705

Merged
merged 1 commit into from May 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/api/class-browsertype.md
Expand Up @@ -85,7 +85,7 @@ class BrowserTypeExamples
```

## async method: BrowserType.connect
* langs: js, java, python
* langs: js, python, java
- returns: <[Browser]>

This methods attaches Playwright to an existing browser instance.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/api/class-download.md
Expand Up @@ -78,7 +78,7 @@ Deletes the downloaded file. Will wait for the download to finish if necessary.
Returns download error if any. Will wait for the download to finish if necessary.

## method: Download.page
* langs: js, java, python
* langs: js, python, java
- returns: <[Page]>

Get the page that the download belongs to.
Expand Down
1 change: 1 addition & 0 deletions docs/src/api/class-page.md
Expand Up @@ -971,6 +971,7 @@ Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`
`null` disables color scheme emulation.

### option: Page.emulateMedia.reducedMotion
* langs: js, python, java
- `reducedMotion` <null|[ReducedMotion]<"reduce"|"no-preference">>

Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce'`, `'no-preference'`. Passing `null` disables reduced motion emulation.
Expand Down
3 changes: 2 additions & 1 deletion docs/src/api/params.md
Expand Up @@ -367,6 +367,7 @@ Emulates `'prefers-colors-scheme'` media feature, supported values are `'light'`
[`method: Page.emulateMedia`] for more details. Defaults to `'light'`.

## context-option-reducedMotion
* langs: js, python, java
- `reducedMotion` <[ReducedMotion]<"reduce"|"no-preference">>

Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce'`, `'no-preference'`. See [`method: Page.emulateMedia`] for more details. Defaults
Expand Down Expand Up @@ -486,7 +487,7 @@ is considered matching if all specified properties match.
A glob pattern, regex pattern or predicate receiving [URL] to match while waiting for the navigation.

## wait-for-event-event
* langs: js, java, python
* langs: js, python, java
- `event` <[string]>

Event name, same one typically passed into `*.on(event)`.
Expand Down