Change layout to handle whitespace between inline elements in HTML file.

This matches the behaviour of other browsers.
This commit is contained in:
Glenn Watson 2014-07-30 07:46:57 +10:00
parent 3c89e7a8e7
commit 76349374bb
5 changed files with 54 additions and 12 deletions

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background-color: #f6f6f6;
font-size: 128px;
}
</style>
</head>
<body>
<span>A B</span>
</body>
</html>