Files
tubestation/servo/tests/html/inline-block-split-2.html
Jack Moffitt 132ee35633 servo: Merge #3230 - Cargoify servo (from servo:cargoify)
Source-Repo: https://github.com/servo/servo
Source-Revision: b1305bb7d051f83850c51bb0da0ccc86a5e07922
2014-09-09 08:18:18 -06:00

21 lines
337 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 before the SPAN.
<span>This is the content of SPAN.</span>
This is anonymous text after the SPAN.
</p>
</p>
</body>
</html>