It appears that embedding a YouTube video,
<iframe id="yt" src="https://www.youtube.com/embed/kBh1A3D2XP8"
width="250" height="140" frameborder="0"
webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="">
</iframe>
produces the following warning in Chrome (47.0.2526.106 m):
(Determined by setting a breakpoint and stepping out of the function a few times.)
The warning, transcribed:
SVG's SMIL animations (<animate>, <set>, etc.) are deprecated and will be removed. Please use CSS animations or Web animations instead.
Is there something I can do to get rid of this warning?
I saw Deprecated SMIL SVG animation replaced with CSS or Web animations effects (hover, click) but my question is about Javascript I can't control (base.js
comes from YouTube). Also found this Reddit thread with no solutions.