mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-30 19:00:10 +02:00
Add contenteditable attribute definition (#332)
* Add contenteditable attribute definition * gate behind html.trusted * use enum
This commit is contained in:
27
tests/HTMLPurifier/AttrDef/HTML/ContentEditableTest.php
Normal file
27
tests/HTMLPurifier/AttrDef/HTML/ContentEditableTest.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
class HTMLPurifier_AttrDef_HTML_ContentEditableTest extends HTMLPurifier_AttrDefHarness
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
$this->def = new HTMLPurifier_AttrDef_HTML_ContentEditable();
|
||||
}
|
||||
|
||||
public function test()
|
||||
{
|
||||
$this->assertDef('', false);
|
||||
$this->assertDef('true', false);
|
||||
$this->assertDef('caret', false);
|
||||
$this->assertDef('false');
|
||||
}
|
||||
|
||||
public function testTrustedHtml()
|
||||
{
|
||||
$this->config->set('HTML.Trusted', true);
|
||||
$this->assertDef('');
|
||||
$this->assertDef('true');
|
||||
$this->assertDef('false');
|
||||
$this->assertDef('caret', false);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user