1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-01 11:50:28 +02:00

Fix contenteditable attribute definition (#336)

This commit is contained in:
Kieran
2022-09-12 15:53:24 +01:00
committed by GitHub
parent dc27c78871
commit f1d6da13bc
2 changed files with 8 additions and 0 deletions

View File

@@ -258,6 +258,13 @@ class HTMLPurifier_Strategy_ValidateAttributesTest extends
);
}
public function testContentEditableAttribute()
{
$this->assertResult(
'<div contenteditable="false"></div>',
'<div contenteditable="false"></div>'
);
}
}
// vim: et sw=4 sts=4