Closed Bug 299176 Opened 20 years ago Closed 19 years ago

flicker when element innerHTML changes

Categories

(Firefox :: General, defect)

x86
Windows XP
defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 290699

People

(Reporter: mihai.cimpoeru, Unassigned)

Details

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8) Gecko/20050511 Firefox/1.0.4
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8) Gecko/20050511 Firefox/1.0.4

It seem to appear only after second replace of innerHTML.


Reproducible: Always

Steps to Reproduce:
<html>
<body onload="test()">
<script>
var i = 0;
function test()
{
	var e = document.getElementById('holder');
	e.innerHTML = '<table height="100" width="100"><tr><td
style="background:green;">'+i+'</td></tr></table>';
	i++;
	setTimeout('test()',2000);
	
}
</script>
<div id="holder">
</div>
</body>
</html>
Related to/duplicate of bug 290699?
Can you test if this bug still occours with Deer Park Alpha 1, download it from
http://www.mozilla.org/projects/firefox/?

*** This bug has been marked as a duplicate of 290699 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
You need to log in before you can comment on or make changes to this bug.