mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 13:54:27 +00:00
Fixed bug 274530:CSS Error (file:///C:/DOCUME~1/user/LOCALS~1/Temp/calendarPrint.html :0.43):
Unknown property 'vertical-alignment'. Declaration dropped.
This commit is contained in:
parent
0fca4ede5c
commit
a4b605a020
@ -568,7 +568,8 @@ function printMonthView(currentDate) {
|
||||
gHtmlString += "<tr>";
|
||||
for (var i=0; i<7; i++)
|
||||
{
|
||||
gHtmlString += "<td align=left valign=top style='border:1px solid black;vertical-alignment:top;' >"; gHtmlString += "<table valign=top height=100 width=100 style='font-size:10px;'><tr valign=top><td valign=top width=20%>";
|
||||
gHtmlString += "<td align=left valign=top style='border:1px solid black;vertical-align:top;' >";
|
||||
gHtmlString += "<table valign=top height=100 width=100 style='font-size:10px;'><tr valign=top><td valign=top width=20%>";
|
||||
if (thisDaysDate.getMonth()==currentDate.getMonth())
|
||||
gHtmlString += thisDaysDate.getDate();
|
||||
gHtmlString += "</td><td width=80% valign=top></td></tr>";
|
||||
|
Loading…
Reference in New Issue
Block a user