Closed
Bug 30429
Opened 26 years ago
Closed 26 years ago
improper implementation of the JavaScript bgcolor property.
Categories
(Core :: JavaScript Engine, defect, P3)
Tracking
()
People
(Reporter: rs1195, Assigned: rogerl)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)
BuildID: 2000022820
In IE5 and NN4 when the bgcolor property is changed it correctly changes the
bgcolor of the entire page. In mozilla M14 it only changes the color of
approx. 1/2 the page, as seen at http://shawdog.dhs.org/index.html
Reproducible: Always
Steps to Reproduce:
1. Load http://shawdog.dhs.org in mozilla
2. mouseover the main graphic - witmer.
Actual Results: now bgcolor should change to gold, but only 1/2 of the page
actually changes.
Expected Results: the bgcolor of the page should have changed to a gold color
until mouseout on the main graphic.
This is a problem in Win32 with mozilla M14
in certain instances the bgcolor of a document loaded in mozilla will not
change at all when specified to by JavaScript UNTIL another window is moved
over mozilla and then mozilla has focus, here is an example:
<html>
<head>
<title>bgcolor bug</title>
</head>
<SCRIPT>
function switchBgcolor()
{
document.bgColor = "#445522";
}
</SCRIPT>
<body bgcolor="#AA3344">
<SCRIPT LANGUAGE="JavaScript1.2">
window.setTimeout("switchBgcolor()",3000);
</SCRIPT>
</body>
</html>
| Assignee | ||
Comment 1•26 years ago
|
||
*** This bug has been marked as a duplicate of 11491 ***
Status: UNCONFIRMED → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Summary: improper implementation of the JavaScript bgcolor property. → improper implementation of the JavaScript bgcolor property.
You need to log in
before you can comment on or make changes to this bug.
Description
•