--TEST-- Bug #26384 (domxslt->process causes segfault with xsl:key) --SKIPIF-- --FILE-- load(dirname(__FILE__)."/area_name.xml"); if(!$dom) { echo "Error while parsing the document\n"; exit; } $proc = new xsltcache; if(!$proc) { echo "Error while making xsltprocessor object\n"; exit; } $proc->importStylesheet(dirname(__FILE__)."/area_list.xsl"); print $proc->transformToXml($dom); //this segfaulted before print $dom->documentElement->firstChild->nextSibling->nodeName; --EXPECT-- HERE ROW