mirror of
https://github.com/servo/servo.git
synced 2025-06-12 18:34:39 +00:00
20 lines
340 B
HTML
20 lines
340 B
HTML
<!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 <p>before the SPAN.
|
|
<span>This is the content of SPAN.</span>
|
|
This is anonymous text after the SPAN.
|
|
</p>
|
|
</p>
|
|
</body>
|
|
</html>
|
|
|