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 3b3b7fc commit cac4951Copy full SHA for cac4951
packages/react-dom/src/shared/DOMProperty.js
@@ -260,7 +260,12 @@ const properties = {};
260
// In React, we let users pass `true` and `false` even though technically
261
// these aren't boolean attributes (they are coerced to strings).
262
// Since these are SVG attributes, their attribute names are case-sensitive.
263
-['autoReverse', 'externalResourcesRequired', 'preserveAlpha'].forEach(name => {
+[
264
+ 'autoReverse',
265
+ 'externalResourcesRequired',
266
+ 'focusable',
267
+ 'preserveAlpha',
268
+].forEach(name => {
269
properties[name] = new PropertyInfoRecord(
270
name,
271
BOOLEANISH_STRING,
0 commit comments