r14045 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r14044‎ | r14045 | r14046 >
Date:00:24, 3 May 2006
Author:brion
Status:old
Tags:
Comment:
Parser test cases for bug 5497
Modified paths:
  • /trunk/phase3/maintenance/parserTests.txt (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/parserTests.txt
@@ -3787,6 +3787,172 @@
37883788
37893789 !! end
37903790
 3791+#
 3792+#
 3793+#
 3794+
 3795+!! test
 3796+HTML bullet list, closed tags (bug 5497)
 3797+!! input
 3798+<ul>
 3799+<li>One</li>
 3800+<li>Two</li>
 3801+</ul>
 3802+!! result
 3803+<ul>
 3804+<li>One</li>
 3805+<li>Two</li>
 3806+</ul>
 3807+
 3808+!! end
 3809+
 3810+!! test
 3811+HTML bullet list, unclosed tags (bug 5497)
 3812+!! input
 3813+<ul>
 3814+<li>One
 3815+<li>Two
 3816+</ul>
 3817+!! result
 3818+<ul>
 3819+<li>One
 3820+</li><li>Two
 3821+</li></ul>
 3822+
 3823+!! end
 3824+
 3825+!! test
 3826+HTML ordered list, closed tags (bug 5497)
 3827+!! input
 3828+<ol>
 3829+<li>One</li>
 3830+<li>Two</li>
 3831+</ol>
 3832+!! result
 3833+<ol>
 3834+<li>One</li>
 3835+<li>Two</li>
 3836+</ol>
 3837+
 3838+!! end
 3839+
 3840+!! test
 3841+HTML ordered list, unclosed tags (bug 5497)
 3842+!! input
 3843+<ol>
 3844+<li>One
 3845+<li>Two
 3846+</ol>
 3847+!! result
 3848+<ol>
 3849+<li>One
 3850+</li><li>Two
 3851+</li></ol>
 3852+
 3853+!! end
 3854+
 3855+!! test
 3856+HTML nested bullet list, closed tags (bug 5497)
 3857+!! input
 3858+<ul>
 3859+<li>One</li>
 3860+<li>Two:
 3861+<ul>
 3862+<li>Sub-one</li>
 3863+<li>Sub-two</li>
 3864+</ul>
 3865+</li>
 3866+</ul>
 3867+!! result
 3868+<ul>
 3869+<li>One</li>
 3870+<li>Two:
 3871+<ul>
 3872+<li>Sub-one</li>
 3873+<li>Sub-two</li>
 3874+</ul>
 3875+</li>
 3876+</ul>
 3877+
 3878+!! end
 3879+
 3880+!! test
 3881+HTML nested bullet list, open tags (bug 5497)
 3882+!! input
 3883+<ul>
 3884+<li>One
 3885+<li>Two:
 3886+<ul>
 3887+<li>Sub-one
 3888+<li>Sub-two
 3889+</ul>
 3890+</li>
 3891+</ul>
 3892+!! result
 3893+<ul>
 3894+<li>One
 3895+</li><li>Two:
 3896+<ul>
 3897+<li>Sub-one
 3898+</li><li>Sub-two
 3899+</li></ul>
 3900+</li></ul>
 3901+
 3902+!! end
 3903+
 3904+!! test
 3905+HTML nested ordered list, closed tags (bug 5497)
 3906+!! input
 3907+<ol>
 3908+<li>One</li>
 3909+<li>Two:
 3910+<ol>
 3911+<li>Sub-one</li>
 3912+<li>Sub-two</li>
 3913+</ol>
 3914+</li>
 3915+</ol>
 3916+!! result
 3917+<ol>
 3918+<li>One</li>
 3919+<li>Two:
 3920+<ol>
 3921+<li>Sub-one</li>
 3922+<li>Sub-two</li>
 3923+</ol>
 3924+</li>
 3925+</ol>
 3926+
 3927+!! end
 3928+
 3929+!! test
 3930+HTML nested ordered list, open tags (bug 5497)
 3931+!! input
 3932+<ol>
 3933+<li>One
 3934+<li>Two:
 3935+<ol>
 3936+<li>Sub-one
 3937+<li>Sub-two
 3938+</ol>
 3939+</li>
 3940+</ol>
 3941+!! result
 3942+<ol>
 3943+<li>One
 3944+</li><li>Two:
 3945+<ol>
 3946+<li>Sub-one
 3947+</li><li>Sub-two
 3948+</li></ol>
 3949+</li></ol>
 3950+
 3951+!! end
 3952+
 3953+#
 3954+#
 3955+#
 3956+
37913957 TODO:
37923958 more images
37933959 more tables

Follow-up revisions

RevisionCommit summaryAuthorDate
r14046Parser test cases for bug 5497brion00:25, 3 May 2006
r14047adjust notes: * Rolled back the buggy patch for bug 5497brion00:29, 3 May 2006
r14563* Add <ol> to the list of block elements for doBlockLevels; avoids <p>s being...brion02:06, 4 June 2006
r19801Add a mechanism to parserTests when run in --compare or --record mode, to giv...nickj06:59, 6 February 2007

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r13851Fix bug 5497: Regression in HTML normalization in 1.6 (unclosed <li>)...hashar19:25, 24 April 2006
r13852BACKPORT from trunk:...hashar19:29, 24 April 2006

Status & tagging log