This repository was archived by the owner on Sep 20, 2024. It is now read-only.
This repository was archived by the owner on Sep 20, 2024. It is now read-only.
Wrong HTML entity encoding in attribute #46
Closed
Description
The website is: dentzar.com.
Please click on the Search button and you’ll see strange looking box.
Original HTML:
data-avia-search-tooltip="<form role="search" action="https://dentzar.com/" id="searchform" method="get" class="">
<div>
<input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello" />
<input type="text" id="s" name="s" value="" placeholder='Search' />
</div>
</form>"
Defer.js optimized HTML:
data-avia-search-tooltip="<form role=&quot;search&quot; action=&quot;https://dentzar.com/&quot; id=&quot;searchform&quot; method=&quot;get&quot; class=&quot;&quot;>
<div>
<input type=&quot;submit&quot; value=&quot;&quot; id=&quot;searchsubmit&quot; class=&quot;button avia-font-entypo-fontello&quot; />
<input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; value=&quot;&quot; placeholder='Search' />
</div>
</form>"
Reason: wrong HTML entity encoding.
Schedule: Fix in the next release
Temporary fix: None