dbaron%dbaron.org aa8191ed1b Disable a small part of the fix for bug 416168 to fix a regression with outlines of certain empty inlines. b=424236 r+sr=roc a=blocking1.9+
git-svn-id: svn://10.0.0.236/trunk@249675 18797224-902f-48f8-a5cc-f745e15eee43
2008-04-06 03:55:32 +00:00

22 lines
441 B
HTML

<!DOCTYPE HTML> <!-- standards mode only! -->
<html>
<head>
<title>Testcase, overflow on empty spans</title>
<style type="text/css">
html, body { margin: 0; padding: 0.25em; }
div { background:aqua; }
div > span { outline: 1px dotted black; }
div > span > span { display:block; margin: 0 1em; }
</style>
</head>
<body>
<div>
<!-- rely on the dot being offscreen -->
<span>
<span>text</span></span>
</div>
</body>
</html>