r14046 MediaWiki - Code Review archive

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

Diff [purge]

Index: branches/REL1_6/phase3/maintenance/parserTests.txt
@@ -3754,6 +3754,172 @@
37553755 Something, but defenetly not <br id="9" />...
37563756 !! end
37573757
 3758+#
 3759+#
 3760+#
 3761+
 3762+!! test
 3763+HTML bullet list, closed tags (bug 5497)
 3764+!! input
 3765+<ul>
 3766+<li>One</li>
 3767+<li>Two</li>
 3768+</ul>
 3769+!! result
 3770+<ul>
 3771+<li>One</li>
 3772+<li>Two</li>
 3773+</ul>
 3774+
 3775+!! end
 3776+
 3777+!! test
 3778+HTML bullet list, unclosed tags (bug 5497)
 3779+!! input
 3780+<ul>
 3781+<li>One
 3782+<li>Two
 3783+</ul>
 3784+!! result
 3785+<ul>
 3786+<li>One
 3787+</li><li>Two
 3788+</li></ul>
 3789+
 3790+!! end
 3791+
 3792+!! test
 3793+HTML ordered list, closed tags (bug 5497)
 3794+!! input
 3795+<ol>
 3796+<li>One</li>
 3797+<li>Two</li>
 3798+</ol>
 3799+!! result
 3800+<ol>
 3801+<li>One</li>
 3802+<li>Two</li>
 3803+</ol>
 3804+
 3805+!! end
 3806+
 3807+!! test
 3808+HTML ordered list, unclosed tags (bug 5497)
 3809+!! input
 3810+<ol>
 3811+<li>One
 3812+<li>Two
 3813+</ol>
 3814+!! result
 3815+<ol>
 3816+<li>One
 3817+</li><li>Two
 3818+</li></ol>
 3819+
 3820+!! end
 3821+
 3822+!! test
 3823+HTML nested bullet list, closed tags (bug 5497)
 3824+!! input
 3825+<ul>
 3826+<li>One</li>
 3827+<li>Two:
 3828+<ul>
 3829+<li>Sub-one</li>
 3830+<li>Sub-two</li>
 3831+</ul>
 3832+</li>
 3833+</ul>
 3834+!! result
 3835+<ul>
 3836+<li>One</li>
 3837+<li>Two:
 3838+<ul>
 3839+<li>Sub-one</li>
 3840+<li>Sub-two</li>
 3841+</ul>
 3842+</li>
 3843+</ul>
 3844+
 3845+!! end
 3846+
 3847+!! test
 3848+HTML nested bullet list, open tags (bug 5497)
 3849+!! input
 3850+<ul>
 3851+<li>One
 3852+<li>Two:
 3853+<ul>
 3854+<li>Sub-one
 3855+<li>Sub-two
 3856+</ul>
 3857+</li>
 3858+</ul>
 3859+!! result
 3860+<ul>
 3861+<li>One
 3862+</li><li>Two:
 3863+<ul>
 3864+<li>Sub-one
 3865+</li><li>Sub-two
 3866+</li></ul>
 3867+</li></ul>
 3868+
 3869+!! end
 3870+
 3871+!! test
 3872+HTML nested ordered list, closed tags (bug 5497)
 3873+!! input
 3874+<ol>
 3875+<li>One</li>
 3876+<li>Two:
 3877+<ol>
 3878+<li>Sub-one</li>
 3879+<li>Sub-two</li>
 3880+</ol>
 3881+</li>
 3882+</ol>
 3883+!! result
 3884+<ol>
 3885+<li>One</li>
 3886+<li>Two:
 3887+<ol>
 3888+<li>Sub-one</li>
 3889+<li>Sub-two</li>
 3890+</ol>
 3891+</li>
 3892+</ol>
 3893+
 3894+!! end
 3895+
 3896+!! test
 3897+HTML nested ordered list, open tags (bug 5497)
 3898+!! input
 3899+<ol>
 3900+<li>One
 3901+<li>Two:
 3902+<ol>
 3903+<li>Sub-one
 3904+<li>Sub-two
 3905+</ol>
 3906+</li>
 3907+</ol>
 3908+!! result
 3909+<ol>
 3910+<li>One
 3911+</li><li>Two:
 3912+<ol>
 3913+<li>Sub-one
 3914+</li><li>Sub-two
 3915+</li></ol>
 3916+</li></ol>
 3917+
 3918+!! end
 3919+
 3920+#
 3921+#
 3922+#
 3923+
37583924 TODO:
37593925 more images
37603926 more tables

Follow-up revisions

RevisionCommit summaryAuthorDate
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
r14045Parser test cases for bug 5497brion00:24, 3 May 2006

Status & tagging log