Edit report at http://bugs.php.net/bug.php?id=51534&edit=1

 ID:               51534
 Updated by:       rricha...@php.net
 Reported by:      jameswithers89 at googlemail dot com
 Summary:          DOMImplementation::createDocument() does not correctly
                   append children
-Status:           Open
+Status:           Bogus
 Type:             Bug
 Package:          DOM XML related
 Operating System: Fedora 12 GNU/Linux
 PHP Version:      5.3.2

 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

It's appending exactly where you are telling it to


Previous Comments:
------------------------------------------------------------------------
[2010-04-11 19:58:30] jameswithers89 at googlemail dot com

The following code also produces the same error:

<?php

$implementation = new DOMImplementation();

$doctype = $implementation->createDocumentType('html');

// Don't create a root element...

$document = $implementation->createDocument(null, null, $doctype);

// ...instead create a <html> element and set the xmlns attribute:

$html = $document->createElement('html');

$html->setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');

$document->appendChild($html);

$head = $document->createElement('head');

$document->appendChild($head);

echo $document->saveHTML();

------------------------------------------------------------------------
[2010-04-11 19:40:38] jameswithers89 at googlemail dot com

Description:
------------
The product of DOMDocument::createDocument() appends children outside of
the qualified name of the document element (i.e. the root element). 



I am using php-5.3.2-1.fc12.i686 and php-xml-5.3.2-1.fc12.i686 installed
using Yellowdog Updater, Modified Package Manager. All other DOM methods
tried so far work fine.



Test script:
---------------
<?php

$implementation = new DOMImplementation();

$doctype = $implementation->createDocumentType('html');

$document =
$implementation->createDocument('http://www.w3.org/1999/xhtml', 'html',
$doctype);

$head = $document->createElement('head');

$document->appendChild($head);

echo $document->saveHTML();





Expected result:
----------------
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml";>

<head></head>

</html>

Actual result:
--------------
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml";></html><head></head>


------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=51534&edit=1

Reply via email to