Mercurial > pub > Impl
comparison _test/Test/DOM/Node.pm @ 122:a7efb3117295
Fixed bug in IMPL::DOM::Navigator::selectNodes
Fixed bug in IMPL::DOM::Node::selectNodes
renamed operator 'type' to 'typeof' in IMPL::Object::Abstract
A proper implementation of the IMPL::DOM::Node::nodeProperty and a related changes in the IMPL::DOM::Property module, now the last is very simple.
author | wizard |
---|---|
date | Tue, 08 Jun 2010 20:12:45 +0400 |
parents | 16ada169ca75 |
children | 1d7e370a91fa |
comparison
equal
deleted
inserted
replaced
121:92c850d0bdb9 | 122:a7efb3117295 |
---|---|
119 | 119 |
120 failed "property isComplex returned false for the root node" unless $this->Root->isComplex; | 120 failed "property isComplex returned false for the root node" unless $this->Root->isComplex; |
121 failed "property isComplex returned true for a simple node", $this->Root->firstChild->nodeName if $this->Root->firstChild->isComplex; | 121 failed "property isComplex returned true for a simple node", $this->Root->firstChild->nodeName if $this->Root->firstChild->isComplex; |
122 }; | 122 }; |
123 | 123 |
124 package Test::DOM::TypedNode; | |
125 use base qw(IMPL::DOM::Node); | |
126 use IMPL::Class::Property; | |
127 use IMPL::DOM::Property; | |
128 | |
129 | |
130 | |
124 1; | 131 1; |