Now that the dropzone attribute has been removed from HTML5, assuming it is removed from the test, 1 point is freed up.
A good potential replacement is IntersectionObserver. It isn't widely supported yet (Chrome only so far and in development for Edge) and is incredibly important for performance. Currently ad providers do things like check 60 times a second (or more) if an ad is in view to report back to advertisers if the ad was viewed (they only pay if the ad is visible). This happens for every ad on the page, which is one of the major reasons ads slow down the browser.
IntersectionObserver is feature designed to combat this so that ads can be performant without resorting to these hacks.
Now that the dropzone attribute has been removed from HTML5, assuming it is removed from the test, 1 point is freed up.
A good potential replacement is IntersectionObserver. It isn't widely supported yet (Chrome only so far and in development for Edge) and is incredibly important for performance. Currently ad providers do things like check 60 times a second (or more) if an ad is in view to report back to advertisers if the ad was viewed (they only pay if the ad is visible). This happens for every ad on the page, which is one of the major reasons ads slow down the browser.
IntersectionObserver is feature designed to combat this so that ads can be performant without resorting to these hacks.