1
0
Fork 0
firefox/layout/reftests/first-line/font-styles-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
No EOL
557 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Simple first-line test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
margin: 20px;
font-family: serif;
font-size: 200%;
line-height: 1.5;
width: 400px;
}
span.sansserif {
font-family: sans-serif;
}
.floatright {
float: right;
}
</style>
</head>
<body><div><span class="sansserif">sans-serif</span><br>serif <strong>bold serif <em>italic</em></strong><em><br>just italic<span class="floatright">italic too</span></em></div></body>
</html>