You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Deliver the page specified as example code below with Content-Type application/xhtml+xml and place an image "red.png" next to it:
See that the image red.png is loaded in Chromium and in Firefox, but not in Opera.
Possible cause
In file booleanAttrs line 392 there is a special treatment for the src property for MSIE. Enabling this special treatment for Opera as well solves the problem.
Not that the spec for the setAttribute method simply says:
If an attribute with that name is already present in the element, its value is changed to be that of the value parameter
It does not mention anything about namespaces.
Looking at the DOM tree in Opera dragonfly reveals that Opera has actually set the src-Property correctly... It just overrode the ng:src property with the expected value.