aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/inline-block-split-2.html
blob: e17ad7d327b9406affd680a396329e2b19bbeea7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Anonymous text interrupted by a block</title>
<style>
body { display: block }
p { display: inline }
span { display: block }
</style>
</head>
<body>
<p>
This is anonymous text before the SPAN.
<span>This is the content of SPAN.</span>
This is anonymous text after the SPAN.
</p>
</p>
</body>
</html>