blob: 22d77944e4b2ca866a2bad377e4f1ab6f960c4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
div {
height: 100px;
width: 200px;
}
</style>
<body>
<p>Test passes if there are exactly two lines of text below.</p>
<div>This text<br />should be on two lines.</div>
</body>
|