dholbert%cs.stanford.edu 93565a18cc Bug 393655: Fix undetected cases of lines going empty --> nonempty, due to margins. r+sr=roc, a=blocking1.9+
git-svn-id: svn://10.0.0.236/trunk@239470 18797224-902f-48f8-a5cc-f745e15eee43
2007-11-15 19:07:04 +00:00

18 lines
345 B
HTML

<html class="reftest-wait">
<head>
<script>
function tweak() {
var editMe = document.getElementById('editMe');
editMe.innerHTML="a";
document.documentElement.className = "";
}
</script>
</head>
<body onload="tweak()">
Foo
<div id="editMe" style="margin-bottom: 50px;">
</div>
<div>Bar</div>
</body>
</html>