[Webkit-unassigned] [Bug 7711] microsoft.com's page on Vista does not display or act correctly in Safari

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Tue Jul 11 07:46:35 PDT 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=7711





------- Comment #8 from david.storey at opera.com  2006-07-11 07:46 PDT -------
We've analyzed this bug in Opera.  Safari renders the same as Opera so I guess
the issue is the same:

If you remove direction:rtl it is left-aligned in FF and Opera, right-aligned
in IE.

If you keep direction:rtl but remove text-align: right it is left-aligned in
Opera and IE but right-aligned in FF.

If you include both it is left-aligned in Opera, right-aligned in IE and FF.


First: text-align should not affect the placement of nested blocks, only inline
content. Opera and FF do this correctly, IE fails.

Second: direction should affect the placement of nested blocks as well as
inline content, but should not affect the placement of the block on which the
property is set. Opera and IE do this correctly, FF fails.

In short: FF and IE have one bug each, Opera is right (and Safari)

I've wrote to our contact at MS at told them it breaks in Opera and Safari.

There are two fixes:

Either change the CSS for "#wvFeatSNav" in
http://www.microsoft.com/windowsvista/includes/wvfp.css from

#wvFeatSNav
{
float: left;
padding: 0px 0px 0px 0px;
margin: 80px 0px 0px 0px;
width: 427px;
height: 360px;
text-align:right;
}

to

#wvFeatSNav
{
float: left;
padding: 0px 0px 0px 240px;
margin: 80px 0px 0px 0px;
width: 187px;
height: 360px;
text-align:right;
}

or:

Set direction:rtl; on #wvFeatSNav

These should work in Safari too.


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list