2011-07-04 19:51:35 +00:00
|
|
|
<?php
|
|
|
|
|
/** tests for includes/Html.php */
|
|
|
|
|
|
|
|
|
|
class HtmlTest extends MediaWikiTestCase {
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
2012-08-30 09:56:21 +00:00
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$langCode = 'en';
|
|
|
|
|
$langObj = Language::factory( $langCode );
|
2012-01-25 03:25:54 +00:00
|
|
|
|
|
|
|
|
// Hardcode namespaces during test runs,
|
|
|
|
|
// so that html output based on existing namespaces
|
|
|
|
|
// can be properly evaluated.
|
2012-10-08 10:59:55 +00:00
|
|
|
$langObj->setNamespaces( array(
|
2012-01-25 03:25:54 +00:00
|
|
|
-2 => 'Media',
|
|
|
|
|
-1 => 'Special',
|
2013-02-14 11:22:13 +00:00
|
|
|
0 => '',
|
|
|
|
|
1 => 'Talk',
|
|
|
|
|
2 => 'User',
|
|
|
|
|
3 => 'User_talk',
|
|
|
|
|
4 => 'MyWiki',
|
|
|
|
|
5 => 'MyWiki_Talk',
|
|
|
|
|
6 => 'File',
|
|
|
|
|
7 => 'File_talk',
|
|
|
|
|
8 => 'MediaWiki',
|
|
|
|
|
9 => 'MediaWiki_talk',
|
|
|
|
|
10 => 'Template',
|
|
|
|
|
11 => 'Template_talk',
|
|
|
|
|
14 => 'Category',
|
|
|
|
|
15 => 'Category_talk',
|
|
|
|
|
100 => 'Custom',
|
|
|
|
|
101 => 'Custom_talk',
|
2012-01-27 13:00:26 +00:00
|
|
|
) );
|
2012-10-08 10:59:55 +00:00
|
|
|
|
|
|
|
|
$this->setMwGlobals( array(
|
|
|
|
|
'wgLanguageCode' => $langCode,
|
|
|
|
|
'wgContLang' => $langObj,
|
|
|
|
|
'wgLang' => $langObj,
|
|
|
|
|
'wgWellFormedXml' => false,
|
|
|
|
|
) );
|
2011-07-04 19:51:35 +00:00
|
|
|
}
|
2012-08-30 09:56:21 +00:00
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Html::element
|
|
|
|
|
*/
|
2012-10-08 10:59:55 +00:00
|
|
|
public function testElementBasics() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<img>',
|
|
|
|
|
Html::element( 'img', null, '' ),
|
|
|
|
|
'No close tag for short-tag elements'
|
|
|
|
|
);
|
2012-08-30 09:56:21 +00:00
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element></element>',
|
|
|
|
|
Html::element( 'element', null, null ),
|
|
|
|
|
'Close tag for empty element (null, null)'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element></element>',
|
|
|
|
|
Html::element( 'element', array(), '' ),
|
|
|
|
|
'Close tag for empty element (array, string)'
|
|
|
|
|
);
|
|
|
|
|
|
2013-03-21 19:35:44 +00:00
|
|
|
$this->setMwGlobals( 'wgWellFormedXml', true );
|
2012-10-08 10:59:55 +00:00
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<img />',
|
|
|
|
|
Html::element( 'img', null, '' ),
|
|
|
|
|
'Self-closing tag for short-tag elements (wgWellFormedXml = true)'
|
|
|
|
|
);
|
2011-07-04 19:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
2013-05-10 04:04:33 +00:00
|
|
|
public function dataXmlMimeType() {
|
|
|
|
|
return array(
|
|
|
|
|
// ( $mimetype, $isXmlMimeType )
|
|
|
|
|
# HTML is not an XML MimeType
|
|
|
|
|
array( 'text/html', false ),
|
|
|
|
|
# XML is an XML MimeType
|
|
|
|
|
array( 'text/xml', true ),
|
|
|
|
|
array( 'application/xml', true ),
|
|
|
|
|
# XHTML is an XML MimeType
|
|
|
|
|
array( 'application/xhtml+xml', true ),
|
|
|
|
|
# Make sure other +xml MimeTypes are supported
|
|
|
|
|
# SVG is another random MimeType even though we don't use it
|
|
|
|
|
array( 'image/svg+xml', true ),
|
|
|
|
|
# Complete random other MimeTypes are not XML
|
|
|
|
|
array( 'text/plain', false ),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataXmlMimeType
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::isXmlMimeType
|
2013-05-10 04:04:33 +00:00
|
|
|
*/
|
|
|
|
|
public function testXmlMimeType( $mimetype, $isXmlMimeType ) {
|
|
|
|
|
$this->assertEquals( $isXmlMimeType, Html::isXmlMimeType( $mimetype ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers HTML::expandAttributes
|
|
|
|
|
*/
|
2011-07-04 19:51:35 +00:00
|
|
|
public function testExpandAttributesSkipsNullAndFalse() {
|
2012-10-30 19:06:16 +00:00
|
|
|
|
2011-07-04 19:51:35 +00:00
|
|
|
### EMPTY ########
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEmpty(
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'foo' => null ) ),
|
2011-07-04 19:51:35 +00:00
|
|
|
'skip keys with null value'
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEmpty(
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'foo' => false ) ),
|
2011-07-04 19:51:35 +00:00
|
|
|
'skip keys with false value'
|
|
|
|
|
);
|
2014-05-10 08:58:19 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' foo=""',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'foo' => '' ) ),
|
2011-07-04 19:51:35 +00:00
|
|
|
'keep keys with an empty string'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers HTML::expandAttributes
|
|
|
|
|
*/
|
2011-07-04 19:51:35 +00:00
|
|
|
public function testExpandAttributesForBooleans() {
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
'',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'selected' => false ) ),
|
2011-07-04 19:51:35 +00:00
|
|
|
'Boolean attributes do not generates output when value is false'
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
'',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'selected' => null ) ),
|
2011-07-04 19:51:35 +00:00
|
|
|
'Boolean attributes do not generates output when value is null'
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' selected',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'selected' => true ) ),
|
2012-10-08 10:59:55 +00:00
|
|
|
'Boolean attributes have no value when value is true'
|
2011-07-04 19:51:35 +00:00
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' selected',
|
2011-07-04 19:51:35 +00:00
|
|
|
Html::expandAttributes( array( 'selected' ) ),
|
2012-10-08 10:59:55 +00:00
|
|
|
'Boolean attributes have no value when value is true (passed as numerical array)'
|
|
|
|
|
);
|
|
|
|
|
|
2013-03-21 19:35:44 +00:00
|
|
|
$this->setMwGlobals( 'wgWellFormedXml', true );
|
2012-10-08 10:59:55 +00:00
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' selected=""',
|
|
|
|
|
Html::expandAttributes( array( 'selected' => true ) ),
|
|
|
|
|
'Boolean attributes have empty string value when value is true (wgWellFormedXml)'
|
|
|
|
|
);
|
2011-07-04 19:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
2014-05-10 08:58:19 +00:00
|
|
|
/**
|
|
|
|
|
* @covers HTML::expandAttributes
|
|
|
|
|
*/
|
|
|
|
|
public function testExpandAttributesForNumbers() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' value=1',
|
|
|
|
|
Html::expandAttributes( array( 'value' => 1 ) ),
|
|
|
|
|
'Integer value is cast to a string'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' value=1.1',
|
|
|
|
|
Html::expandAttributes( array( 'value' => 1.1 ) ),
|
|
|
|
|
'Float value is cast to a string'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers HTML::expandAttributes
|
|
|
|
|
*/
|
|
|
|
|
public function testExpandAttributesForObjects() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' value=stringValue',
|
|
|
|
|
Html::expandAttributes( array( 'value' => new HtmlTestValue() ) ),
|
|
|
|
|
'Object value is converted to a string'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-04 19:51:35 +00:00
|
|
|
/**
|
|
|
|
|
* Test for Html::expandAttributes()
|
|
|
|
|
* Please note it output a string prefixed with a space!
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::expandAttributes
|
2011-07-04 19:51:35 +00:00
|
|
|
*/
|
|
|
|
|
public function testExpandAttributesVariousExpansions() {
|
|
|
|
|
### NOT EMPTY ####
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' empty_string=""',
|
|
|
|
|
Html::expandAttributes( array( 'empty_string' => '' ) ),
|
|
|
|
|
'Empty string is always quoted'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' key=value',
|
|
|
|
|
Html::expandAttributes( array( 'key' => 'value' ) ),
|
|
|
|
|
'Simple string value needs no quotes'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' one=1',
|
|
|
|
|
Html::expandAttributes( array( 'one' => 1 ) ),
|
|
|
|
|
'Number 1 value needs no quotes'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' zero=0',
|
|
|
|
|
Html::expandAttributes( array( 'zero' => 0 ) ),
|
|
|
|
|
'Number 0 value needs no quotes'
|
|
|
|
|
);
|
|
|
|
|
|
2013-03-21 19:35:44 +00:00
|
|
|
$this->setMwGlobals( 'wgWellFormedXml', true );
|
2012-10-08 10:59:55 +00:00
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
' empty_string=""',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'empty_string' => '' ) ),
|
2013-02-09 19:10:43 +00:00
|
|
|
'Attribute values are always quoted (wgWellFormedXml): Empty string'
|
2011-07-04 19:51:35 +00:00
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
' key="value"',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'key' => 'value' ) ),
|
2013-02-09 19:10:43 +00:00
|
|
|
'Attribute values are always quoted (wgWellFormedXml): Simple string'
|
2011-07-04 19:51:35 +00:00
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
' one="1"',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'one' => 1 ) ),
|
2013-02-09 19:10:43 +00:00
|
|
|
'Attribute values are always quoted (wgWellFormedXml): Number 1'
|
2011-07-04 19:51:35 +00:00
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-07-04 19:51:35 +00:00
|
|
|
' zero="0"',
|
2011-09-03 01:42:43 +00:00
|
|
|
Html::expandAttributes( array( 'zero' => 0 ) ),
|
2013-02-09 19:10:43 +00:00
|
|
|
'Attribute values are always quoted (wgWellFormedXml): Number 0'
|
2011-07-04 19:51:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
2011-09-03 03:55:23 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Html::expandAttributes has special features for HTML
|
|
|
|
|
* attributes that use space separated lists and also
|
|
|
|
|
* allows arrays to be used as values.
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::expandAttributes
|
2011-09-03 03:55:23 +00:00
|
|
|
*/
|
|
|
|
|
public function testExpandAttributesListValueAttributes() {
|
|
|
|
|
### STRING VALUES
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class="redundant spaces here"',
|
|
|
|
|
Html::expandAttributes( array( 'class' => ' redundant spaces here ' ) ),
|
|
|
|
|
'Normalization should strip redundant spaces'
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class="foo bar"',
|
|
|
|
|
Html::expandAttributes( array( 'class' => 'foo bar foo bar bar' ) ),
|
|
|
|
|
'Normalization should remove duplicates in string-lists'
|
|
|
|
|
);
|
|
|
|
|
### "EMPTY" ARRAY VALUES
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class=""',
|
|
|
|
|
Html::expandAttributes( array( 'class' => array() ) ),
|
|
|
|
|
'Value with an empty array'
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class=""',
|
|
|
|
|
Html::expandAttributes( array( 'class' => array( null, '', ' ', ' ' ) ) ),
|
|
|
|
|
'Array with null, empty string and spaces'
|
|
|
|
|
);
|
|
|
|
|
### NON-EMPTY ARRAY VALUES
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class="foo bar"',
|
|
|
|
|
Html::expandAttributes( array( 'class' => array(
|
|
|
|
|
'foo',
|
|
|
|
|
'bar',
|
|
|
|
|
'foo',
|
|
|
|
|
'bar',
|
|
|
|
|
'bar',
|
|
|
|
|
) ) ),
|
|
|
|
|
'Normalization should remove duplicates in the array'
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals(
|
2011-09-03 03:55:23 +00:00
|
|
|
' class="foo bar"',
|
|
|
|
|
Html::expandAttributes( array( 'class' => array(
|
|
|
|
|
'foo bar',
|
|
|
|
|
'bar foo',
|
|
|
|
|
'foo',
|
|
|
|
|
'bar bar',
|
|
|
|
|
) ) ),
|
|
|
|
|
'Normalization should remove duplicates in string-lists in the array'
|
|
|
|
|
);
|
|
|
|
|
}
|
2011-10-24 17:45:45 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test feature added by r96188, let pass attributes values as
|
|
|
|
|
* a PHP array. Restricted to class,rel, accesskey.
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::expandAttributes
|
2011-10-24 17:45:45 +00:00
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testExpandAttributesSpaceSeparatedAttributesWithBoolean() {
|
2011-10-24 17:45:45 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' class="booltrue one"',
|
|
|
|
|
Html::expandAttributes( array( 'class' => array(
|
|
|
|
|
'booltrue' => true,
|
|
|
|
|
'one' => 1,
|
|
|
|
|
|
|
|
|
|
# Method use isset() internally, make sure we do discard
|
2013-02-14 11:22:13 +00:00
|
|
|
# attributes values which have been assigned well known values
|
2011-10-24 17:45:45 +00:00
|
|
|
'emptystring' => '',
|
|
|
|
|
'boolfalse' => false,
|
|
|
|
|
'zero' => 0,
|
|
|
|
|
'null' => null,
|
2013-02-14 11:22:13 +00:00
|
|
|
) ) )
|
2011-10-24 17:45:45 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* How do we handle duplicate keys in HTML attributes expansion?
|
|
|
|
|
* We could pass a "class" the values: 'GREEN' and array( 'GREEN' => false )
|
|
|
|
|
* The later will take precedence.
|
|
|
|
|
*
|
|
|
|
|
* Feature added by r96188
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::expandAttributes
|
2011-10-24 17:45:45 +00:00
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testValueIsAuthoritativeInSpaceSeparatedAttributesArrays() {
|
2011-10-24 17:45:45 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
' class=""',
|
2011-10-27 15:54:49 +00:00
|
|
|
Html::expandAttributes( array( 'class' => array(
|
2011-10-24 17:45:45 +00:00
|
|
|
'GREEN',
|
|
|
|
|
'GREEN' => false,
|
|
|
|
|
'GREEN',
|
2013-02-14 11:22:13 +00:00
|
|
|
) ) )
|
2011-10-24 17:45:45 +00:00
|
|
|
);
|
|
|
|
|
}
|
2012-01-25 03:25:54 +00:00
|
|
|
|
2014-05-10 08:58:19 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Html::expandAttributes
|
|
|
|
|
* @expectedException MWException
|
|
|
|
|
*/
|
|
|
|
|
public function testExpandAttributes_ArrayOnNonListValueAttribute_ThrowsException() {
|
|
|
|
|
// Real-life test case found in the Popups extension (see Gerrit cf0fd64),
|
|
|
|
|
// when used with an outdated BetaFeatures extension (see Gerrit deda1e7)
|
|
|
|
|
Html::expandAttributes( array(
|
|
|
|
|
'src' => array(
|
|
|
|
|
'ltr' => 'ltr.svg',
|
|
|
|
|
'rtl' => 'rtl.svg'
|
|
|
|
|
)
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Html::namespaceSelector
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testNamespaceSelector() {
|
2012-01-25 03:25:54 +00:00
|
|
|
$this->assertEquals(
|
2012-10-08 10:59:55 +00:00
|
|
|
'<select id=namespace name=namespace>' . "\n" .
|
2013-02-14 11:22:13 +00:00
|
|
|
'<option value=0>(Main)</option>' . "\n" .
|
|
|
|
|
'<option value=1>Talk</option>' . "\n" .
|
|
|
|
|
'<option value=2>User</option>' . "\n" .
|
|
|
|
|
'<option value=3>User talk</option>' . "\n" .
|
|
|
|
|
'<option value=4>MyWiki</option>' . "\n" .
|
|
|
|
|
'<option value=5>MyWiki Talk</option>' . "\n" .
|
|
|
|
|
'<option value=6>File</option>' . "\n" .
|
|
|
|
|
'<option value=7>File talk</option>' . "\n" .
|
|
|
|
|
'<option value=8>MediaWiki</option>' . "\n" .
|
|
|
|
|
'<option value=9>MediaWiki talk</option>' . "\n" .
|
|
|
|
|
'<option value=10>Template</option>' . "\n" .
|
|
|
|
|
'<option value=11>Template talk</option>' . "\n" .
|
|
|
|
|
'<option value=14>Category</option>' . "\n" .
|
|
|
|
|
'<option value=15>Category talk</option>' . "\n" .
|
|
|
|
|
'<option value=100>Custom</option>' . "\n" .
|
|
|
|
|
'<option value=101>Custom talk</option>' . "\n" .
|
|
|
|
|
'</select>',
|
2012-01-25 03:25:54 +00:00
|
|
|
Html::namespaceSelector(),
|
|
|
|
|
'Basic namespace selector without custom options'
|
|
|
|
|
);
|
2012-03-07 19:14:20 +00:00
|
|
|
|
2012-01-25 03:25:54 +00:00
|
|
|
$this->assertEquals(
|
2012-10-08 10:59:55 +00:00
|
|
|
'<label for=mw-test-namespace>Select a namespace:</label> ' .
|
2013-02-14 11:22:13 +00:00
|
|
|
'<select id=mw-test-namespace name=wpNamespace>' . "\n" .
|
|
|
|
|
'<option value=all>all</option>' . "\n" .
|
|
|
|
|
'<option value=0>(Main)</option>' . "\n" .
|
|
|
|
|
'<option value=1>Talk</option>' . "\n" .
|
|
|
|
|
'<option value=2 selected>User</option>' . "\n" .
|
|
|
|
|
'<option value=3>User talk</option>' . "\n" .
|
|
|
|
|
'<option value=4>MyWiki</option>' . "\n" .
|
|
|
|
|
'<option value=5>MyWiki Talk</option>' . "\n" .
|
|
|
|
|
'<option value=6>File</option>' . "\n" .
|
|
|
|
|
'<option value=7>File talk</option>' . "\n" .
|
|
|
|
|
'<option value=8>MediaWiki</option>' . "\n" .
|
|
|
|
|
'<option value=9>MediaWiki talk</option>' . "\n" .
|
|
|
|
|
'<option value=10>Template</option>' . "\n" .
|
|
|
|
|
'<option value=11>Template talk</option>' . "\n" .
|
|
|
|
|
'<option value=14>Category</option>' . "\n" .
|
|
|
|
|
'<option value=15>Category talk</option>' . "\n" .
|
|
|
|
|
'<option value=100>Custom</option>' . "\n" .
|
|
|
|
|
'<option value=101>Custom talk</option>' . "\n" .
|
|
|
|
|
'</select>',
|
2012-01-25 03:25:54 +00:00
|
|
|
Html::namespaceSelector(
|
|
|
|
|
array( 'selected' => '2', 'all' => 'all', 'label' => 'Select a namespace:' ),
|
|
|
|
|
array( 'name' => 'wpNamespace', 'id' => 'mw-test-namespace' )
|
|
|
|
|
),
|
|
|
|
|
'Basic namespace selector with custom values'
|
|
|
|
|
);
|
2012-02-14 09:59:59 +00:00
|
|
|
|
2012-03-07 19:14:20 +00:00
|
|
|
$this->assertEquals(
|
2012-10-08 10:59:55 +00:00
|
|
|
'<label for=namespace>Select a namespace:</label> ' .
|
2013-02-14 11:22:13 +00:00
|
|
|
'<select id=namespace name=namespace>' . "\n" .
|
|
|
|
|
'<option value=0>(Main)</option>' . "\n" .
|
|
|
|
|
'<option value=1>Talk</option>' . "\n" .
|
|
|
|
|
'<option value=2>User</option>' . "\n" .
|
|
|
|
|
'<option value=3>User talk</option>' . "\n" .
|
|
|
|
|
'<option value=4>MyWiki</option>' . "\n" .
|
|
|
|
|
'<option value=5>MyWiki Talk</option>' . "\n" .
|
|
|
|
|
'<option value=6>File</option>' . "\n" .
|
|
|
|
|
'<option value=7>File talk</option>' . "\n" .
|
|
|
|
|
'<option value=8>MediaWiki</option>' . "\n" .
|
|
|
|
|
'<option value=9>MediaWiki talk</option>' . "\n" .
|
|
|
|
|
'<option value=10>Template</option>' . "\n" .
|
|
|
|
|
'<option value=11>Template talk</option>' . "\n" .
|
|
|
|
|
'<option value=14>Category</option>' . "\n" .
|
|
|
|
|
'<option value=15>Category talk</option>' . "\n" .
|
|
|
|
|
'<option value=100>Custom</option>' . "\n" .
|
|
|
|
|
'<option value=101>Custom talk</option>' . "\n" .
|
|
|
|
|
'</select>',
|
2012-03-07 19:14:20 +00:00
|
|
|
Html::namespaceSelector(
|
|
|
|
|
array( 'label' => 'Select a namespace:' )
|
|
|
|
|
),
|
|
|
|
|
'Basic namespace selector with a custom label but no id attribtue for the <select>'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testCanFilterOutNamespaces() {
|
2012-03-07 19:14:20 +00:00
|
|
|
$this->assertEquals(
|
2013-02-14 11:22:13 +00:00
|
|
|
'<select id=namespace name=namespace>' . "\n" .
|
|
|
|
|
'<option value=2>User</option>' . "\n" .
|
|
|
|
|
'<option value=4>MyWiki</option>' . "\n" .
|
|
|
|
|
'<option value=5>MyWiki Talk</option>' . "\n" .
|
|
|
|
|
'<option value=6>File</option>' . "\n" .
|
|
|
|
|
'<option value=7>File talk</option>' . "\n" .
|
|
|
|
|
'<option value=8>MediaWiki</option>' . "\n" .
|
|
|
|
|
'<option value=9>MediaWiki talk</option>' . "\n" .
|
|
|
|
|
'<option value=10>Template</option>' . "\n" .
|
|
|
|
|
'<option value=11>Template talk</option>' . "\n" .
|
|
|
|
|
'<option value=14>Category</option>' . "\n" .
|
|
|
|
|
'<option value=15>Category talk</option>' . "\n" .
|
|
|
|
|
'</select>',
|
2012-02-13 15:08:26 +00:00
|
|
|
Html::namespaceSelector(
|
2012-02-14 09:59:59 +00:00
|
|
|
array( 'exclude' => array( 0, 1, 3, 100, 101 ) )
|
2012-02-13 15:08:26 +00:00
|
|
|
),
|
2012-02-14 09:59:59 +00:00
|
|
|
'Namespace selector namespace filtering.'
|
|
|
|
|
);
|
2012-03-07 19:14:20 +00:00
|
|
|
}
|
2012-02-14 09:59:59 +00:00
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testCanDisableANamespaces() {
|
2012-03-07 19:14:20 +00:00
|
|
|
$this->assertEquals(
|
2013-02-14 11:22:13 +00:00
|
|
|
'<select id=namespace name=namespace>' . "\n" .
|
|
|
|
|
'<option disabled value=0>(Main)</option>' . "\n" .
|
|
|
|
|
'<option disabled value=1>Talk</option>' . "\n" .
|
|
|
|
|
'<option disabled value=2>User</option>' . "\n" .
|
|
|
|
|
'<option disabled value=3>User talk</option>' . "\n" .
|
|
|
|
|
'<option disabled value=4>MyWiki</option>' . "\n" .
|
|
|
|
|
'<option value=5>MyWiki Talk</option>' . "\n" .
|
|
|
|
|
'<option value=6>File</option>' . "\n" .
|
|
|
|
|
'<option value=7>File talk</option>' . "\n" .
|
|
|
|
|
'<option value=8>MediaWiki</option>' . "\n" .
|
|
|
|
|
'<option value=9>MediaWiki talk</option>' . "\n" .
|
|
|
|
|
'<option value=10>Template</option>' . "\n" .
|
|
|
|
|
'<option value=11>Template talk</option>' . "\n" .
|
|
|
|
|
'<option value=14>Category</option>' . "\n" .
|
|
|
|
|
'<option value=15>Category talk</option>' . "\n" .
|
|
|
|
|
'<option value=100>Custom</option>' . "\n" .
|
|
|
|
|
'<option value=101>Custom talk</option>' . "\n" .
|
|
|
|
|
'</select>',
|
2012-02-14 09:59:59 +00:00
|
|
|
Html::namespaceSelector( array(
|
|
|
|
|
'disable' => array( 0, 1, 2, 3, 4 )
|
|
|
|
|
) ),
|
|
|
|
|
'Namespace selector namespace disabling'
|
2012-02-13 15:08:26 +00:00
|
|
|
);
|
2012-01-25 03:25:54 +00:00
|
|
|
}
|
2012-01-30 10:39:51 +00:00
|
|
|
|
2012-08-30 09:57:22 +00:00
|
|
|
/**
|
2012-10-08 10:59:55 +00:00
|
|
|
* @dataProvider provideHtml5InputTypes
|
2013-10-24 10:54:02 +00:00
|
|
|
* @covers Html::element
|
2012-08-30 09:57:22 +00:00
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testHtmlElementAcceptsNewHtml5TypesInHtml5Mode( $HTML5InputType ) {
|
2012-08-30 09:57:22 +00:00
|
|
|
$this->assertEquals(
|
2012-10-08 10:59:55 +00:00
|
|
|
'<input type=' . $HTML5InputType . '>',
|
2012-09-18 20:30:38 +00:00
|
|
|
Html::element( 'input', array( 'type' => $HTML5InputType ) ),
|
2012-08-30 09:57:22 +00:00
|
|
|
'In HTML5, HTML::element() should accept type="' . $HTML5InputType . '"'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* List of input element types values introduced by HTML5
|
|
|
|
|
* Full list at http://www.w3.org/TR/html-markup/input.html
|
|
|
|
|
*/
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function provideHtml5InputTypes() {
|
2012-08-30 09:57:22 +00:00
|
|
|
$types = array(
|
|
|
|
|
'datetime',
|
|
|
|
|
'datetime-local',
|
|
|
|
|
'date',
|
|
|
|
|
'month',
|
|
|
|
|
'time',
|
|
|
|
|
'week',
|
|
|
|
|
'number',
|
|
|
|
|
'range',
|
|
|
|
|
'email',
|
|
|
|
|
'url',
|
|
|
|
|
'search',
|
|
|
|
|
'tel',
|
|
|
|
|
'color',
|
|
|
|
|
);
|
|
|
|
|
$cases = array();
|
2013-02-14 11:22:13 +00:00
|
|
|
foreach ( $types as $type ) {
|
2012-08-30 09:57:22 +00:00
|
|
|
$cases[] = array( $type );
|
|
|
|
|
}
|
2013-04-26 12:00:22 +00:00
|
|
|
|
2012-08-30 09:57:22 +00:00
|
|
|
return $cases;
|
|
|
|
|
}
|
2012-08-16 07:37:56 +00:00
|
|
|
|
|
|
|
|
/**
|
2012-10-30 19:06:16 +00:00
|
|
|
* Test out Html::element drops or enforces default value
|
2013-03-11 03:16:28 +00:00
|
|
|
* @covers Html::dropDefaults
|
2012-08-16 07:37:56 +00:00
|
|
|
* @dataProvider provideElementsWithAttributesHavingDefaultValues
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testDropDefaults( $expected, $element, $attribs, $message = '' ) {
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->assertEquals( $expected, Html::element( $element, $attribs ), $message );
|
2012-08-16 07:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
public static function provideElementsWithAttributesHavingDefaultValues() {
|
2012-08-16 07:37:56 +00:00
|
|
|
# Use cases in a concise format:
|
|
|
|
|
# <expected>, <element name>, <array of attributes> [, <message>]
|
|
|
|
|
# Will be mapped to Html::element()
|
|
|
|
|
$cases = array();
|
2012-08-30 10:49:57 +00:00
|
|
|
|
|
|
|
|
### Generic cases, match $attribDefault static array
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<area>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'area', array( 'shape' => 'rect' )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-30 19:06:16 +00:00
|
|
|
$cases[] = array( '<button type=submit></button>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'button', array( 'formaction' => 'GET' )
|
|
|
|
|
);
|
2012-10-30 19:06:16 +00:00
|
|
|
$cases[] = array( '<button type=submit></button>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'button', array( 'formenctype' => 'application/x-www-form-urlencoded' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<canvas></canvas>',
|
|
|
|
|
'canvas', array( 'height' => '150' )
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<canvas></canvas>',
|
|
|
|
|
'canvas', array( 'width' => '300' )
|
|
|
|
|
);
|
|
|
|
|
# Also check with numeric values
|
|
|
|
|
$cases[] = array( '<canvas></canvas>',
|
|
|
|
|
'canvas', array( 'height' => 150 )
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<canvas></canvas>',
|
|
|
|
|
'canvas', array( 'width' => 300 )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<command>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'command', array( 'type' => 'command' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<form></form>',
|
|
|
|
|
'form', array( 'action' => 'GET' )
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<form></form>',
|
|
|
|
|
'form', array( 'autocomplete' => 'on' )
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<form></form>',
|
|
|
|
|
'form', array( 'enctype' => 'application/x-www-form-urlencoded' )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'input', array( 'formaction' => 'GET' )
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'input', array( 'type' => 'text' )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<keygen>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'keygen', array( 'keytype' => 'rsa' )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<link>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'link', array( 'media' => 'all' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<menu></menu>',
|
|
|
|
|
'menu', array( 'type' => 'list' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<script></script>',
|
|
|
|
|
'script', array( 'type' => 'text/javascript' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<style></style>',
|
|
|
|
|
'style', array( 'media' => 'all' )
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<style></style>',
|
|
|
|
|
'style', array( 'type' => 'text/css' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$cases[] = array( '<textarea></textarea>',
|
|
|
|
|
'textarea', array( 'wrap' => 'soft' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
### SPECIFIC CASES
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
# <link type="text/css">
|
|
|
|
|
$cases[] = array( '<link>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'link', array( 'type' => 'text/css' )
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
# <input> specific handling
|
|
|
|
|
$cases[] = array( '<input type=checkbox>',
|
2012-08-16 07:37:56 +00:00
|
|
|
'input', array( 'type' => 'checkbox', 'value' => 'on' ),
|
|
|
|
|
'Default value "on" is stripped of checkboxes',
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input type=radio>',
|
2012-08-16 07:37:56 +00:00
|
|
|
'input', array( 'type' => 'radio', 'value' => 'on' ),
|
|
|
|
|
'Default value "on" is stripped of radio buttons',
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input type=submit value=Submit>',
|
2012-08-16 07:37:56 +00:00
|
|
|
'input', array( 'type' => 'submit', 'value' => 'Submit' ),
|
|
|
|
|
'Default value "Submit" is kept on submit buttons (for possible l10n issues)',
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input type=color>',
|
2012-08-16 07:37:56 +00:00
|
|
|
'input', array( 'type' => 'color', 'value' => '' ),
|
|
|
|
|
);
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<input type=range>',
|
2012-08-16 07:37:56 +00:00
|
|
|
'input', array( 'type' => 'range', 'value' => '' ),
|
|
|
|
|
);
|
|
|
|
|
|
2012-10-30 19:06:16 +00:00
|
|
|
# <button> specific handling
|
|
|
|
|
# see remarks on http://msdn.microsoft.com/en-us/library/ie/ms535211%28v=vs.85%29.aspx
|
|
|
|
|
$cases[] = array( '<button type=submit></button>',
|
|
|
|
|
'button', array( 'type' => 'submit' ),
|
2014-04-24 10:05:52 +00:00
|
|
|
'According to standard the default type is "submit". '
|
|
|
|
|
. 'Depending on compatibility mode IE might use "button", instead.',
|
2012-10-30 19:06:16 +00:00
|
|
|
);
|
|
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
# <select> specifc handling
|
|
|
|
|
$cases[] = array( '<select multiple></select>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'select', array( 'size' => '4', 'multiple' => true ),
|
|
|
|
|
);
|
|
|
|
|
# .. with numeric value
|
2012-10-08 10:59:55 +00:00
|
|
|
$cases[] = array( '<select multiple></select>',
|
2012-08-30 10:49:57 +00:00
|
|
|
'select', array( 'size' => 4, 'multiple' => true ),
|
|
|
|
|
);
|
|
|
|
|
$cases[] = array( '<select></select>',
|
|
|
|
|
'select', array( 'size' => '1', 'multiple' => false ),
|
|
|
|
|
);
|
|
|
|
|
# .. with numeric value
|
|
|
|
|
$cases[] = array( '<select></select>',
|
|
|
|
|
'select', array( 'size' => 1, 'multiple' => false ),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# Passing an array as value
|
|
|
|
|
$cases[] = array( '<a class="css-class-one css-class-two"></a>',
|
|
|
|
|
'a', array( 'class' => array( 'css-class-one', 'css-class-two' ) ),
|
|
|
|
|
"dropDefaults accepts values given as an array"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# FIXME: doDropDefault should remove defaults given in an array
|
|
|
|
|
# Expected should be '<a></a>'
|
|
|
|
|
$cases[] = array( '<a class=""></a>',
|
|
|
|
|
'a', array( 'class' => array( '', '' ) ),
|
|
|
|
|
"dropDefaults accepts values given as an array"
|
|
|
|
|
);
|
|
|
|
|
|
2012-08-16 07:37:56 +00:00
|
|
|
# Craft the Html elements
|
|
|
|
|
$ret = array();
|
2013-02-14 11:22:13 +00:00
|
|
|
foreach ( $cases as $case ) {
|
2012-08-16 07:37:56 +00:00
|
|
|
$ret[] = array(
|
|
|
|
|
$case[0],
|
2012-10-08 10:59:55 +00:00
|
|
|
$case[1], $case[2],
|
|
|
|
|
isset( $case[3] ) ? $case[3] : ''
|
2012-08-16 07:37:56 +00:00
|
|
|
);
|
|
|
|
|
}
|
2013-04-26 12:00:22 +00:00
|
|
|
|
2012-08-16 07:37:56 +00:00
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 10:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Html::expandAttributes
|
|
|
|
|
*/
|
2012-11-29 12:12:35 +00:00
|
|
|
public function testFormValidationBlacklist() {
|
|
|
|
|
$this->assertEmpty(
|
2014-04-24 10:05:52 +00:00
|
|
|
Html::expandAttributes( array(
|
|
|
|
|
'min' => 1,
|
|
|
|
|
'max' => 100,
|
|
|
|
|
'pattern' => 'abc',
|
|
|
|
|
'required' => true,
|
|
|
|
|
'step' => 2
|
|
|
|
|
) ),
|
2012-11-29 12:12:35 +00:00
|
|
|
'Blacklist form validation attributes.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
' step=any',
|
2014-04-24 17:51:33 +00:00
|
|
|
Html::expandAttributes(
|
|
|
|
|
array(
|
|
|
|
|
'min' => 1,
|
|
|
|
|
'max' => 100,
|
|
|
|
|
'pattern' => 'abc',
|
|
|
|
|
'required' => true,
|
|
|
|
|
'step' => 'any'
|
|
|
|
|
),
|
|
|
|
|
'Allow special case "step=any".'
|
|
|
|
|
)
|
|
|
|
|
);
|
2012-11-29 12:12:35 +00:00
|
|
|
}
|
2013-03-07 19:03:44 +00:00
|
|
|
|
|
|
|
|
public function testWrapperInput() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input type=radio value=testval name=testname>',
|
|
|
|
|
Html::input( 'testname', 'testval', 'radio' ),
|
|
|
|
|
'Input wrapper with type and value.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2014-07-30 17:56:25 +00:00
|
|
|
'<input name=testname class=mw-ui-input>',
|
2013-03-07 19:03:44 +00:00
|
|
|
Html::input( 'testname' ),
|
|
|
|
|
'Input wrapper with all default values.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testWrapperCheck() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input type=checkbox value=1 name=testname>',
|
|
|
|
|
Html::check( 'testname' ),
|
|
|
|
|
'Checkbox wrapper unchecked.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input checked type=checkbox value=1 name=testname>',
|
|
|
|
|
Html::check( 'testname', true ),
|
|
|
|
|
'Checkbox wrapper checked.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input type=checkbox value=testval name=testname>',
|
|
|
|
|
Html::check( 'testname', false, array( 'value' => 'testval' ) ),
|
|
|
|
|
'Checkbox wrapper with a value override.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testWrapperRadio() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input type=radio value=1 name=testname>',
|
|
|
|
|
Html::radio( 'testname' ),
|
|
|
|
|
'Radio wrapper unchecked.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input checked type=radio value=1 name=testname>',
|
|
|
|
|
Html::radio( 'testname', true ),
|
|
|
|
|
'Radio wrapper checked.'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input type=radio value=testval name=testname>',
|
|
|
|
|
Html::radio( 'testname', false, array( 'value' => 'testval' ) ),
|
|
|
|
|
'Radio wrapper with a value override.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testWrapperLabel() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for=testid>testlabel</label>',
|
|
|
|
|
Html::label( 'testlabel', 'testid' ),
|
|
|
|
|
'Label wrapper'
|
|
|
|
|
);
|
|
|
|
|
}
|
2011-07-04 19:51:35 +00:00
|
|
|
}
|
2014-05-10 08:58:19 +00:00
|
|
|
|
|
|
|
|
class HtmlTestValue {
|
|
|
|
|
function __toString() {
|
|
|
|
|
return 'stringValue';
|
|
|
|
|
}
|
|
|
|
|
}
|