ladybird/Tests/LibWeb/Crash/CSS/imported-style-sheet-loading-font-without-document.html

19 lines
609 B
HTML
Raw Normal View History

<!DOCTYPE html>
<body>
<style id="style">
/*
The below data url is equivalent to:
@font-face {
font-family: Icons;
src: url(does/not/matter.ttf);
font-weight: 400;
font-style: normal;
}
*/
@import url("data:text/css;charset=utf-8;base64,QGZvbnQtZmFjZSB7DQogICAgZm9udC1mYW1pbHk6IEljb25zOw0KICAgIHNyYzogdXJsKGRvZXMvbm90L21hdHRlci50dGYpOw0KICAgIGZvbnQtd2VpZ2h0OiA0MDA7DQogICAgZm9udC1zdHlsZTogbm9ybWFsOw0KfQ==");
</style>
<script>
style.remove();
</script>
</body>