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
causes polymer-resin to create a <gr-autocomplete> proxy element instead of using the default HTMLElement proxy.
We should recognize when is="..." appears on a non-builtin HTML element, and issue a clear violation report that explains the problem, and then reject the value.
Treat an is attribute as misplaced when the element containing the is attribute
has a valid custom element name, OR
is an instance of HTMLUnknownElement
is a legacy element.
The text was updated successfully, but these errors were encountered:
mikesamuel
changed the title
Bogus is attribute value causes false negatives.
Misplaced is="..." attribute causes false negatives.
Jun 22, 2017
Change the logic that computes a clean proxy in the presence of an is="..." attribute to do the following:
Create a clean proxy as before.
If the clean proxy itself has an is="..." attribute set the bad proxy bit
Run our element classifier on the clean proxy.
If the classification is not (builtin) then classify set the bad proxy bit
Before doing the first in cleanProxy check, check the bad proxy bit, and if it is set, report a misplaced is attribute violation, and return a type-independent innocuous value, possibly null.
https://gerrit-review.googlesource.com/c/111010/2
causes polymer-resin to create a
<gr-autocomplete>
proxy element instead of using the defaultHTMLElement
proxy.We should recognize when
is="..."
appears on a non-builtin HTML element, and issue a clear violation report that explains the problem, and then reject the value.Treat an
is
attribute as misplaced when the element containing theis
attributeHTMLUnknownElement
The text was updated successfully, but these errors were encountered: