We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9226a4 commit c9085b4Copy full SHA for c9085b4
tests/lib/rules/no-unknown-property.js
@@ -48,6 +48,8 @@ ruleTester.run('no-unknown-property', rule, {
48
// Some HTML/DOM elements with common attributes should work
49
{ code: '<div className="bar"></div>;' },
50
{ code: '<div onMouseDown={this._onMouseDown}></div>;' },
51
+ { code: '<div onScrollEnd={this._onScrollEnd}></div>;' },
52
+ { code: '<div onScrollEndCapture={this._onScrollEndCapture}></div>;' },
53
{ code: '<a href="someLink" download="foo">Read more</a>' },
54
{ code: '<area download="foo" />' },
55
{ code: '<img src="cat_keyboard.jpeg" alt="A cat sleeping on a keyboard" align="top" fetchPriority="high" />' },
0 commit comments