You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What I mean is that the dynamic pages provided by the server generate invalid DOM, which can be correctly rendered by the browser, but the browser can't properly render static invalid DOM (such as saved webpages).
I'm not sure if I should clean up the mess for the website.
Some websites generate DOM structures in a non-standard manner, leading to HTML files that cannot be rendered correctly and require manual fixes.
Example
//p[@class='head-detail author-detail']
Problem
The browser cannot render a
p
element containing a nestedul
. Changep
todiv
to render it correctly.Environment
Request
check if a
p
element contains any block elements, and replaces it with adiv
if necessary.The text was updated successfully, but these errors were encountered: