I just implemented the new native lazy loading of chrome 76 in some images. It consists simply in adding the attribute loading="lazy" to images.
ex:
<img src="#url" width="380" height="285" alt="altexample" loading="lazy">
But for my surprise w3c is returning the following error:
"Error: Attribute loading not allowed on element img at this point."
Some documentation:
Chrome 76 release notes https://www.chromestatus.com/feature/5645767347798016
Implementation example https://www.searchenginejournal.com/google-chrome-will-soon-support-lazy-loading-at-the-browser-level/321211/
Anyone with the same problem? Thank you
