# File lib/html5/treebuilders/simpletree.rb, line 26 def appendChild node if node.kind_of? TextNode and childNodes.length > 0 and childNodes.last.kind_of? TextNode childNodes.last.value += node.value else childNodes << node end node.parent = self end