| 1234567891011121314151617181920212223242526272829303132333435363738 | <?php//error_reporting(E_ALL);require_once('../phpQuery/phpQuery.php');phpQuery::$debug = true;phpQuery::plugin('Scripts');$testName = 'Scripts/example';$doc = phpQuery::newDocumentFile('test.html');$testResult = 10;if ($doc->script('example', 'p')->length == $testResult)	print "Test '$testName' PASSED :)";else {	print "Test '$testName' <strong>FAILED</strong> !!! ";	print "<pre>";	var_dump($doc->whois());	print "</pre>\n";}print "\n";$testName = 'Scripts/gmail_login';$testResult = 1;$url = 'http://code.google.com/p/phpquery/w/edit/MultiDocumentSupport';//phpQuery::ajaxAllowURL($url);$editor = phpQuery::newDocument('<div/>')	->script('google_login')	->location($url);if ($editor->find('textarea#content')->length == $testResult)	print "Test '$testName' PASSED :)";else {	print "Test '$testName' <strong>FAILED</strong> !!! ";	print "<pre>";	var_dump($doc->whois());	print "</pre>\n";}print "\n";?>
 |