-
-
Notifications
You must be signed in to change notification settings - Fork 469
Closed
Description
The following example returns zero.
count((new Dom())->load('
<html>
<head>
<script type="text/javascript">
console.log(1 < 3);
</script>
</head>
<body>
<div id="panel"></div>
</body>
</html>
', ['removeScripts' => false])->find('body'));
if I comment out the following lines in Dom.php
if (trim($tag) == '')
{
// no tag found, invalid < found
return $return;
}
everything works as expected