react-native-web
react-native-web copied to clipboard
onLoad callback on Image is missing the source attribute
The problem
Here is what the event looks like on onLoad:

But here is what the documentation tells us:

As you can see, the source attribute is missing.
How to reproduce
Simplified test case: here
Steps to reproduce:
- Create an Image
- Add an onLoad method
- Notice that the event.nativeEvent doesn't include the source attribute
Expected behavior
Environment (include versions). Did this work in previous versions?
- React Native for Web (version): 0.17.6
- React (version): 17.0.2
- Browser: 98.0.2 (64 bits)
Without this event, is there another way to detect the original width/height of the image?
@Sharcoux seems like you might find the image height and width here:

Although it does deviate from the spec mentioned above.