https://bugs.documentfoundation.org/show_bug.cgi?id=155834

--- Comment #15 from Mike Kaganski <mikekagan...@hotmail.com> ---
(In reply to Heiko Tietze from comment #13)
> MSO behaves the same as LibreOffice.

I have tested this, and yes, using Move Up/Down function in MS Word 2016 does
behave the same way.
However, it is completely unrelated.

In Word (and in its file format), there is no proper notion of *list item*,
which would include several paragraphs. The list like

  1. a
  2. b
     c
  3. d
  4. e

would be represented by this OOXML markup:

    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>a</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>b</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
        </w:pPr>
        <w:r>
            <w:t>c</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>d</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>e</w:t>
        </w:r>
    </w:p>

so the "list item" feature of Writer doesn't exist in Word, and so it's
incorrect to consider how Word behaves in this regard. The "unnumbered entries"
in Word are ordinary paragraphs, just having the same paragraph style as
numbered entries, to have the same indentation.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to