In Angular1,
<img ng-src="{{imageUrl}}">
This will hide the broken image icon if the imageUrl is empty.
But in Angular2, both
<img src="{{imageUrl}}">
and the equivalent of ngSrc
<img [src]="imageUrl">
still show the small broken image icon as the image placeholder if imageUrl is empty.
What's the actual difference there?