# This is a test for: # https://rt.cpan.org/Public/Bug/Display.html?id=69520 =head1 DESCRIPTION IDs of elements is lost when importing nodes from another document. When call method 'importNode' executed function 'xmlNodeCopy' from the library libxml2, which does not import IDs. Propose to replace the call "xmlNodeCopy" on "xmlDocNodeCopy" in the file "dom.c". =head1 THANKS. Yuriy Ustushenko . =cut use strict; use warnings; use Test::More tests => 4; use XML::LibXML; { my $doc = XML::LibXML->load_xml(string => <<'EOT'); item1 EOT my $elem = $doc->getElementById('id1'); # TEST ok ($elem, 'Orig doc has id1'); # TEST is ($elem->textContent(), 'item1', 'Content of orig doc elem id1'); my $doc2 = XML::LibXML->createDocument( "1.0", "UTF-8" ); $doc2->setDocumentElement( $doc2->importNode( $doc->documentElement() ) ); my $elem2 = $doc2->getElementById('id1'); # TEST ok ($elem2, 'Doc2 after importNode has id1'); # TEST is ($elem2->textContent(), 'item1', 'Doc2 after importNode has id1'); } =head1 COPYRIGHT & LICENSE Copyright 2011 by Shlomi Fish This program is distributed under the MIT (X11) License: L Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut