Closed
Bug 60672
Opened 25 years ago
Closed 24 years ago
TABLE BGCOLOR ignored in document.written TABLE
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: martin.honnen, Assigned: karnaze)
References
Details
(Keywords: dom0)
Attachments
(3 files)
499 bytes,
text/html
|
Details | |
604 bytes,
text/html
|
Details | |
18.44 KB,
patch
|
Details | Diff | Splinter Review |
The following shows a white table instead of a orange one, using M18 but I had
a complaint about a more complex page with the same problem for NS6 too:
<HTML>
<HEAD>
<SCRIPT>
function writePage () {
var html = '';
html += '<HTML><HEAD><BODY>';
html += '<TABLE BORDER="1" BGCOLOR="orange" CELLSPACING="0" CELLPADDING="0">';
html += '<TR><TD>Kibology for all.<\/TD><TD>All for Kibology.<\/TD><\/TR>';
html += '<\/TABLE>';
html += '<\/BODY><\/HTML>';
document.open();
document.write(html);
document.close();
}
</SCRIPT>
</HEAD>
<BODY ONLOAD="writePage();">
</BODY>
</HTML>
Reporter | ||
Comment 1•25 years ago
|
||
Martin, simple put a DTD in and of you go
Most Friendly, HJ. (sorry for the SPAM)
Comment 7•24 years ago
|
||
Comment 8•24 years ago
|
||
Sorry ignore my previous comments. Attached patch to a wrong bug!!
Comment 9•24 years ago
|
||
This is a table layout problem, not a DOM problem, reassigning to karnaze.
Assignee: jst → karnaze
Comment 10•24 years ago
|
||
Martin, is that tip Ok for you (see attachment (id=20878) ??
And what is that other problem? Or is that solved now too?
Comment 11•24 years ago
|
||
Worksforme 2001062004 WinNT. If anyone is still seeing this problem, please
reopen the bug.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•