1--TEST-- 2<template> element no default namespace 3--EXTENSIONS-- 4dom 5--FILE-- 6<?php 7 8$html = <<<HTML 9<!DOCTYPE html> 10<html> 11 <body> 12 <template>a<div>foo</div>b</template> 13 </body> 14</html> 15HTML; 16$dom = Dom\HTMLDocument::createFromString($html, Dom\HTML_NO_DEFAULT_NS); 17$template = $dom->getElementsByTagName('template')[0]; 18var_dump($template->innerHTML); 19var_dump($template->firstElementChild->tagName); 20 21?> 22--EXPECT-- 23string(16) "a<div>foo</div>b" 24string(3) "div" 25