mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
49e66c7f08
This option will wait for webfonts to load before taking screenshots.
19 lines
282 B
HTML
19 lines
282 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
@font-face {
|
|
font-family: 'pwtest-iconfont';
|
|
src: url('./iconfont.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
font-family: 'pwtest-iconfont';
|
|
}
|
|
|
|
</style>
|
|
<span>+-</span>
|
|
|