1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-05 05:37:49 +02:00

Add support for proprietary "background" attribute in table elements.

Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
This commit is contained in:
Edward Z. Yang
2008-09-27 21:19:35 -04:00
parent 6a06b92f0c
commit d0fdcc103e
7 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
--HTML--
<table background="logo.png"><tr><td>asdf</td></tr></table>
--EXPECT--
<table style="background-image:url(logo.png);"><tr><td>asdf</td></tr></table>