File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / tidy / tests / 025.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:05 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
tidyNode tests
--SKIPIF--
<?php if (!extension_loaded('tidy')) die('skip'); ?>
--FILE--
<?php

$tidy=tidy_parse_string('<% %>', array('newline' => 'LF'));
var_dump($tidy->Root()->child[0]->isAsp());

$tidy=tidy_parse_string('<# #>',  array('newline' => 'LF'));
var_dump($tidy->Root()->child[0]->isJste());

$tidy=tidy_parse_string('<html><body>text</body></html>');
var_dump($tidy->Root()->child[0]->child[1]->child[0]->isText());

$tidy=tidy_parse_string('<html><body><!-- comment --></body></html>', array('newline' => 'LF'));
$n = $tidy->Root()->child[0]->child[1]->child[0];
var_dump($n->isComment());
var_dump((string)$n);
var_dump((bool)$n);
var_dump((double)$n);
var_dump((int)$n);
var_dump($tidy->Root()->child[0]->child[0]->hasSiblings());

?>
--EXPECT--
bool(true)
bool(true)
bool(true)
bool(true)
string(16) "<!-- comment -->"
bool(true)
float(0)
int(0)
bool(true)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>