Changeset 52969
- Timestamp:
- 03/21/2022 12:28:55 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r52968 r52969 250 250 'cite' => true, 251 251 ), 252 'rb' => array(), 253 'rp' => array(), 254 'rt' => array(), 255 'rtc' => array(), 256 'ruby' => array(), 252 257 's' => array(), 253 258 'samp' => array(), -
trunk/tests/phpunit/tests/kses.php
r52968 r52969 862 862 * @ticket 34063 863 863 */ 864 public function test_bdo () {864 public function test_bdo_tag_allowed() { 865 865 global $allowedposttags; 866 866 … … 871 871 872 872 /** 873 * @ticket 54698 874 */ 875 public function test_ruby_tag_allowed() { 876 global $allowedposttags; 877 878 $input = '<ruby>✶<rp>: </rp><rt>Star</rt><rp>, </rp><rt lang="fr">Étoile</rt><rp>.</rp></ruby>'; 879 880 $this->assertSame( $input, wp_kses( $input, $allowedposttags ) ); 881 } 882 883 /** 873 884 * @ticket 35079 874 885 */ 875 public function test_ol_reversed () {886 public function test_ol_reversed_attribute_allowed() { 876 887 global $allowedposttags; 877 888
Note: See TracChangeset
for help on using the changeset viewer.