[Webkit-unassigned] [Bug 44357] Checkboxes don't get repainted when appended to a div
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Aug 20 14:35:14 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=44357
--- Comment #1 from Eddie Monge <eddie at eddiemonge.com> 2010-08-20 14:35:14 PST ---
<html>
<head>
<style type="text/css">
#box1, #box2
{
border: 1px solid green;
height: 17px; /* only appears when height is greater than 16px, but height needs to be set to reproduce */
}
#box2
{
border-color: red;
}
</style>
</head>
<body>
<div id="box1">
<!-- reproducable with both onclick and onchange -->
<input type="checkbox" onclick="box2.appendChild(this);" />
<input type="checkbox" onclick="box2.appendChild(this);" />
<input type="checkbox" onclick="box2.appendChild(this);" />
</div>
<br/>
<div id="box2">
</div>
<script type="text/javascript">
window.box2 = document.getElementById('box2');
</script>
</body>
</html>
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list