262 } else {
263 // Auto-generated name.
264▶ // TODO: If Fizz starts applying a prefix to this name, we need to consider that.
265 return actualVtName.startsWith('_T_');
266 }
· · ·
382 // bookkeeping for it. HostSingleton release clears the property only if it
383 // still points to this noop.
384▶ // TODO: Only do this for the relevant Safaris maybe?
385 node.onclick = noop;
386}
· · ·
434 }
435 // These are very common props and therefore are in the beginning of the switch.
436▶ // TODO: aria-label is a very common prop but allows booleans so is not like the others
437 // but should ideally go in this list too.
438 case 'className':
· · ·
547 case 'action':
548 case 'formAction': {
549▶ // TODO: Consider moving these special cases to the form, input and button tags.
550 if (__DEV__) {
551 validateFormActionInDevelopment(tag, key, value, props);
· · ·
617 }
618 case 'onClick': {
619▶ // TODO: This cast may not be sound for SVG, MathML or custom elements.
620 if (value != null) {
621 if (__DEV__ && typeof value !== 'function') {
+ 32 more matches in this file