[Libreoffice-bugs] [Bug 39835] New: FORMATTING
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Thu Aug 4 08:58:54 PDT 2011
https://bugs.freedesktop.org/show_bug.cgi?id=39835
Summary: FORMATTING
Product: LibreOffice
Version: LibO 3.3.2 release
Platform: All
OS/Version: Linux (All)
Status: NEW
Severity: minor
Priority: medium
Component: Writer
AssignedTo: libreoffice-bugs at lists.freedesktop.org
ReportedBy: jim at jim-fuqua.com
When pasting from a web page that has an outline or list within a list such as:
1.
2. a.
b.
c.
3.
using the following styling:
ol.c {list-style-type:upper-roman;}
ol.d {list-style-type:lower-alpha;}
the a, b, and c entries show up as 1, 2, and 3. The problem probably hits any
use of the CSS list-style-type.
Below is the html for a test page. Display the page in a browser and then copy
and paste the results in a LibreOffice Writer page.
To paste correctly the CSS properties of the ordered list should be evaluated.
<html>
<head>
<style type="text/css">
ol.c {list-style-type:upper-roman;}
ol.d {list-style-type:lower-alpha;}
</style>
</head>
<body>
<p>Example of ordered lists:</p>
<ol class="c">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
<ol class="d">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
<li>Dr. Pepper</li>
</ol>
</body>
</html>
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Libreoffice-bugs
mailing list