docs(emulation): add a missing closing bracket (#23575)

This commit is contained in:
Kun Fan 2023-06-08 04:53:42 +08:00 committed by GitHub
parent c3bc8e0620
commit d279a8c242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,6 +210,7 @@ await page.set_viewport_size({"width": 1600, "height": 1200})
context = browser.new_context(
viewport={ 'width': 2560, 'height': 1440 },
device_scale_factor=2,
)
```
```csharp
@ -774,4 +775,4 @@ context = browser.new_context(
```csharp
var context = await browser.NewContextAsync(new() { JavaScriptEnabled = true });
```
```