Changeset 894 in tests for trunk/tests/test_includes_balance_tags.php
- Timestamp:
- 07/09/2012 03:32:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/test_includes_balance_tags.php
r883 r894 28 28 } 29 29 } 30 31 // If a recognized valid single tag appears unclosed, it should get self-closed 30 31 /** 32 * If a recognized valid single tag appears unclosed, it should get self-closed 33 * 34 * @ticket 1597 35 */ 32 36 function test_selfcloses_unclosed_known_single_tags() { 33 $this->knownWPBug( 1597 );34 37 35 38 foreach ( $this->single_tags as $tag ) { … … 47 50 } 48 51 49 // If a recognized valid single tag is given a closing tag, the closing tag 50 // should get removed and tag should be self-closed. 52 /** 53 * If a recognized valid single tag is given a closing tag, the closing tag 54 * should get removed and tag should be self-closed. 55 * 56 * @ticket 1597 57 */ 51 58 function test_selfcloses_known_single_tags_having_closing_tag() { 52 $this->knownWPBug( 1597 );53 59 54 60 foreach ( $this->single_tags as $tag ) { … … 57 63 } 58 64 65 /** 66 * @ticket 1597 67 */ 59 68 function test_closes_unknown_single_tags_with_closing_tag() { 60 $this->knownWPBug( 1597 );61 69 62 70 $inputs = array( … … 137 145 } 138 146 147 /** 148 * @ticket 20401 149 */ 139 150 function test_allows_immediately_nested_object_tags() { 140 $this->knownWPBug( 20401 );141 151 142 152 $object = '<object id="obj1"><param name="param1"/><object id="obj2"><param name="param2"/></object></object>';
Note: See TracChangeset
for help on using the changeset viewer.