mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 21:28:02 +01:00
Unit Tests: Add some simple test cases to highlight the types of html entity that kses currently blocks. See #26290
git-svn-id: https://develop.svn.wordpress.org/trunk@26430 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5ec7a534a9
commit
02ab2c69bb
@ -359,4 +359,19 @@ EOF;
|
||||
$this->assertEquals( $allowedposttags, wp_kses_allowed_html( 'post' ) );
|
||||
$this->assertEquals( $allowedtags, wp_kses_allowed_html( 'data' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket
|
||||
*/
|
||||
public function test_wp_kses_normalize_entities() {
|
||||
$this->assertEquals( '♠', wp_kses_normalize_entities( '♠' ) );
|
||||
|
||||
$this->assertEquals( '¹', wp_kses_normalize_entities( '¹' ) );
|
||||
$this->assertEquals( '²', wp_kses_normalize_entities( '²' ) );
|
||||
$this->assertEquals( '³', wp_kses_normalize_entities( '³' ) );
|
||||
$this->assertEquals( '¼', wp_kses_normalize_entities( '¼' ) );
|
||||
$this->assertEquals( '½', wp_kses_normalize_entities( '½' ) );
|
||||
$this->assertEquals( '¾', wp_kses_normalize_entities( '¾' ) );
|
||||
$this->assertEquals( '∴', wp_kses_normalize_entities( '∴' ) );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user