Changeset 894 in tests for trunk/tests/test_post_filtering.php
- Timestamp:
- 07/09/2012 03:32:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/test_post_filtering.php
r877 r894 71 71 } 72 72 73 // test kses bug. xhtml does not require space before closing 74 // empty element 73 /** 74 * test kses bug. xhtml does not require space before closing empty element 75 * @ticket 12394 76 */ 75 77 function test_post_content_xhtml_empty_elem() { 76 $this->knownWPBug( 12394 );77 78 $content = <<<EOF 78 79 <img src='foo' width='500' height='300'/> … … 89 90 } 90 91 91 // make sure unbalanced tags are fixed when they span a --more-- tag 92 /** 93 * make sure unbalanced tags are fixed when they span a --more-- tag 94 * @ticket 6297 95 */ 92 96 function test_post_content_unbalanced_more() { 93 $this->knownWPBug(6297);94 95 97 $content = <<<EOF 96 98 <em>some text<!--more--> … … 109 111 } 110 112 111 // make sure unbalanced tags are fixed when they span a --nextpage-- tag 113 /** 114 * make sure unbalanced tags are fixed when they span a --nextpage-- tag 115 * @ticket 6297 116 */ 112 117 function test_post_content_unbalanced_nextpage() { 113 $this->knownWPBug(6297);114 115 118 $content = <<<EOF 116 119 <em>some text<!--nextpage--> … … 129 132 } 130 133 131 // make sure unbalanced tags are fixed when they span both --more-- and --nextpage-- tags (in that order) 134 /** 135 * make sure unbalanced tags are fixed when they span both --more-- and --nextpage-- tags (in that order) 136 * @ticket 6297 137 */ 132 138 function test_post_content_unbalanced_more_nextpage() { 133 $this->knownWPBug(6297);134 135 139 $content = <<<EOF 136 140 <em>some text<!--more--> … … 157 161 } 158 162 159 // make sure unbalanced tags are fixed when they span both --nextpage-- and --more-- tags (in that order) 163 /** 164 * make sure unbalanced tags are fixed when they span both --nextpage-- and --more-- tags (in that order) 165 * @ticket 6297 166 */ 160 167 function test_post_content_unbalanced_nextpage_more() { 161 $this->knownWPBug(6297);162 163 168 $content = <<<EOF 164 169 <em>some text<!--nextpage-->
Note: See TracChangeset
for help on using the changeset viewer.