[Webkit-unassigned] [Bug 15713] Outside list bullets ignore text-align style

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 27 14:18:01 PDT 2008


https://bugs.webkit.org/show_bug.cgi?id=15713





------- Comment #6 from jparent at google.com  2008-08-27 14:18 PDT -------
The reason we care about this is for rich text editing.  Using the built in
execCommands, lists always looks wrong when you align them.  You can see this
in action in the midas demo: http://www.mozilla.org/editor/midasdemo/.

Example 1:
1. Type "foo<enter>bar<enter>baz"
2. Select all and right align
3. Apply bullets
Resulting HTML is: <div style="text-align:
right;"><ul><li>foo<br></li><li>bar<br></li><li>baz<br></li></ul></div>

As reported earlier in this bug, this renders with the bullets on the left and
the text on the right.

Example 2:
1. Type "foo<enter>bar<enter>baz"
2. Select all, apply bullets
3. Right align
Reulting HTML is: <ul><li style="text-align: right;">foo<br></li><li
style="text-align: right;">bar<br></li><li style="text-align:
right;">baz<br></li></ul>

In this case, it also renders with bullets on the left and text on the right,
so there is no workaround for the user to get their lists to look correct.

Should we file this under the rich text component instead?


-- 
Configure bugmail: https://bugs.webkit.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