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
The following example shows a case where elements are mistakenly selected and manulated in template HTMLs, causing visual distortion.
As shown in the following codes, compared with v0, another <a href="https://www.youtube.com">youtube</a> element is added to the <body> in v1 of the HTML, and thus changes the indices of <body>'s children. However, the scripts are temeplated and can't detect and react to such a change.
As a result, the <div>afterend</div> is inserted at a wrong position in the Fawkes page: it is inserted after the <a href="https://www.gmail.com">gmail</a> tag, rather the <a href="https://www.youtube.com">youtube</a> tag in the original v1 page.
The following example shows a case where elements are mistakenly selected and manulated in template HTMLs, causing visual distortion.
As shown in the following codes, compared with v0, another
<a href="https://www.youtube.com">youtube</a>
element is added to the<body>
in v1 of the HTML, and thus changes the indices of<body>
's children. However, the scripts are temeplated and can't detect and react to such a change.As a result, the
<div>afterend</div>
is inserted at a wrong position in the Fawkes page: it is inserted after the<a href="https://www.gmail.com">gmail</a>
tag, rather the<a href="https://www.youtube.com">youtube</a>
tag in the original v1 page.The text was updated successfully, but these errors were encountered: