2007-08-02 22:44:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_HTMLModule_RubyTest extends HTMLPurifier_HTMLModuleHarness
|
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
$this->config->set('HTML', 'Doctype', 'XHTML 1.1');
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
function testBasicUse() {
|
|
|
|
$this->assertResult(
|
|
|
|
'<ruby><rb>WWW</rb><rt>World Wide Web</rt></ruby>'
|
|
|
|
);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
function testRPUse() {
|
|
|
|
$this->assertResult(
|
|
|
|
'<ruby><rb>WWW</rb><rp>(</rp><rt>World Wide Web</rt><rp>)</rp></ruby>'
|
|
|
|
);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
function testComplexUse() {
|
|
|
|
$this->assertResult(
|
|
|
|
'<ruby>
|
|
|
|
<rbc>
|
|
|
|
<rb>10</rb>
|
|
|
|
<rb>31</rb>
|
|
|
|
<rb>2002</rb>
|
|
|
|
</rbc>
|
|
|
|
<rtc>
|
|
|
|
<rt>Month</rt>
|
|
|
|
<rt>Day</rt>
|
|
|
|
<rt>Year</rt>
|
|
|
|
</rtc>
|
|
|
|
<rtc>
|
|
|
|
<rt rbspan="3">Expiration Date</rt>
|
|
|
|
</rtc>
|
|
|
|
</ruby>'
|
|
|
|
);
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
/* not implemented
|
|
|
|
function testBackwardsCompat() {
|
|
|
|
$this->assertResult(
|
|
|
|
'<ruby>A<rp>(</rp><rt>aaa</rt><rp>)</rp></ruby>',
|
|
|
|
'<ruby><rb>A</rb><rp>(</rp><rt>aaa</rt><rp>)</rp></ruby>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
*/
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-08-02 22:44:42 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|