https://bugzilla.wikimedia.org/show_bug.cgi?id=35806

       Web browser: ---
             Bug #: 35806
           Summary: Special:ExpandTemplates outputs different html than
                    any page on preview/save as well as in Result &
                    Preview sections
           Product: MediaWiki
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: need-parsertest, parser
          Severity: normal
          Priority: Unprioritized
         Component: Special pages
        AssignedTo: wikibugs-l@lists.wikimedia.org
        ReportedBy: dann...@email.cz
    Classification: Unclassified
   Mobile Platform: ---


Special:ExpandTemplates outputs different html than any page on preview/save as
well as in Result & Preview sections.


Examples:

code:
<div class="listtest">
* foo
*bar
* baz
*qux
* lorem
*ipsum
</div>

on Special:ExpandTemplates / Preview:
<div class="listtest">
<ul><li> foo
</li><li>bar
</li><li> baz
</li><li>qux
</li><li> lorem
</li><li>ipsum
</li></ul>
</div>

on page preview:
<div class="listtest">
<ul>
<li>foo</li>
<li>bar</li>
<li>baz</li>
<li>qux</li>
<li>lorem</li>
<li>ipsum</li>
</ul>
</div>

(mind the whitespaces which are important for some CSS constructions as well as
for some JS)

code:
<table>
<tr>
<th>Header</th>
</tr>
<tr>
<td>foo
bar
baz
qux</td>
</tr>
</table>

on Special:ExpandTemplates / Preview:
<table>
<tr>
<th>Header</th>
</tr>
<tr>
<td>foo
bar
baz
qux</td>
</tr>
</table>

on Special:ExpandTemplates / Result:
<table>
<tr>
<th>Header</th>
</tr>
<tr>
<td>foo
<p>bar
baz
</p>
qux</td>
</tr>
</table>

on page preview:
<table>
<tr>
<th>Header</th>
</tr>
<tr>
<td>foo
<p>bar baz</p>
qux</td>
</tr>
</table>

(mind the <p> tag)

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to