2007-08-02 22:44:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_HTMLModule_RubyTest extends HTMLPurifier_HTMLModuleHarness
|
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
2007-08-02 22:44:42 +00:00
|
|
|
parent::setUp();
|
2009-02-20 00:17:49 +00:00
|
|
|
$this->config->set('HTML.Doctype', 'XHTML 1.1');
|
2007-08-02 22:44:42 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testBasicUse()
|
|
|
|
{
|
2007-08-02 22:44:42 +00:00
|
|
|
$this->assertResult(
|
|
|
|
'<ruby><rb>WWW</rb><rt>World Wide Web</rt></ruby>'
|
|
|
|
);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testRPUse()
|
|
|
|
{
|
2007-08-02 22:44:42 +00:00
|
|
|
$this->assertResult(
|
|
|
|
'<ruby><rb>WWW</rb><rp>(</rp><rt>World Wide Web</rt><rp>)</rp></ruby>'
|
|
|
|
);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testComplexUse()
|
|
|
|
{
|
2007-08-02 22:44:42 +00:00
|
|
|
$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
|
2013-07-16 11:56:14 +00:00
|
|
|
function testBackwardsCompat()
|
|
|
|
{
|
2007-08-02 22:44:42 +00:00
|
|
|
$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
|