Can 'excessive DOM size' problem lead to massive URL unindex by Google? I had some webpages that list 7k-9k URLs each one, with the following structure for each link:
<a href="url">Product name</a><br/>
To add information for users, I included the price of the products after the name:
<a href="url">Product name</a> <span class="pricetext">(price)</span><br/>
If I analyze the page with PageSpeed, I get the following 'excessive DOM size' message:
Total DOM Elements ... 8,825
Maximum DOM Depth... 7
Maximum Child Elements .... 3,882
After the addition of the price, I found that Google suddenly started to unindex hundreds of the URLs of my website. I have some questions:
is it possible that the addition of the price could lead to an excessive DOM size (and a rendering issue), that made Google to unindex the URLs?
which alternatives may I use to list the 7k-9k URLs?
are there tools to analyze this, apart from PageSpeed?
Thank you!