Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-font-loading/fontfaceset-clear-css-connected-2.html
<!DOCTYPE html> <meta charset="utf-8"> <link rel="author" title="Myles C. Maxfield" href="mmaxfield@apple.com"> <link rel="help" href="https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-clear"> <meta name="assert" content="Ensure that calling clear() does not remove CSS-connected FontFaces." /> <link rel="match" href="fontfaceset-clear-css-connected-2-ref.html"> <style> @font-face { font-family: "WebFont"; src: url("resources/Rochester.otf") format("opentype"); } </style> <div style="font: 48px 'WebFont';">Hi</div> <script> document.fonts.clear(); </script> </html>
/css/css-font-loading/fontfaceset-clear-css-connected-2-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <link rel="author" title="Myles C. Maxfield" href="mmaxfield@apple.com"> <link rel="help" href="https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-clear"> <meta name="assert" content="Ensure that calling clear() does not remove CSS-connected FontFaces." /> <style> @font-face { font-family: "WebFont"; src: url("resources/Rochester.otf") format("opentype"); } </style> <div style="font: 48px 'WebFont';">Hi</div> </html>