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
Also the specification for HTMLImageElement.complete was recently changed to remove the ability for its reported status to change inside of an endless loop like is used by that test: whatwg/html#4934
I'm seeing
FAIL
results in Servo in test https://github.com/KhronosGroup/WebGL/blob/master/conformance-suites/2.0.0/conformance/more/functions/texImage2DHTML.html which I think may be caused by a race condition in the test.The
FAIL
is caused by thetestTexImage2DNonSOP
test running before the<img id="i2">
has loaded, causing thectx.drawImage(img,0,0)
to throw anInvalidState
exception. This happens when the test runs before theimg
is initialized at https://github.com/KhronosGroup/WebGL/blob/master/conformance-suites/2.0.0/conformance/more/functions/texImage2DHTML.html#L117This seems to be a race condition between the
document.load
event which initializes the img, and the test running.The text was updated successfully, but these errors were encountered: