@gamerdruid @enigm @EE_Elephterion
since long time webkit show one error on getting
https://cncapp06.alliances.commandandconquer.com/320/resource/qx/static/blank.gif/
that is probably a rewrite redirect not pointing to correct image
looking to the code that is the same as qooxdoo last release
we found
resetSource: function() {
if ((qx.core.Environment.get(b) == j)) {
this._setProperty(a, m);
} else {
this._removeProperty(a, true);
}
;return this;
},
that is where i think "m" is qx/static/blank.gif
even if alias manager has qx/static: "webfrontend/ui/common"
that image is not get from "webfrontend/ui/common/blank.gif"
that toURI is https://eaassets-a.akamaihd.net/cncalliancesgame/cdn/data/3c083874b39f062410ec125ef46ad6c9.gif
just for testing i modified the above function on the fly
qx.html.Image.prototype.resetSource = function() {
if ((qx.core.Environment.get("engine.name") == "webkit")) {
this._setProperty("source", "webfrontend/ui/common/blank.gif");
} else {
this._removeProperty("source", true);
}
;return this;
}
and the error does not appear if you change the function before Properties set.
i do not think is the correct solution for game code (probably it should be fix aliasing)
but maybe one day we will get rid of this error in console.
Thanks.