diff --git a/dom/base/nsImageLoadingContent.cpp b/dom/base/nsImageLoadingContent.cpp index 9008d4fbbc43..18205ab5d318 100644 --- a/dom/base/nsImageLoadingContent.cpp +++ b/dom/base/nsImageLoadingContent.cpp @@ -87,7 +87,6 @@ nsImageLoadingContent::nsImageLoadingContent() mBroken(true), mUserDisabled(false), mSuppressed(false), - mFireEventsOnDecode(false), mNewRequestsWillNeedAnimationReset(false), mStateChangerDepth(0), mCurrentRequestRegistered(false), @@ -186,18 +185,6 @@ nsImageLoadingContent::Notify(imgIRequest* aRequest, } if (aType == imgINotificationObserver::DECODE_COMPLETE) { - if (mFireEventsOnDecode) { - mFireEventsOnDecode = false; - - uint32_t reqStatus; - aRequest->GetImageStatus(&reqStatus); - if (reqStatus & imgIRequest::STATUS_ERROR) { - FireEvent(NS_LITERAL_STRING("error")); - } else { - FireEvent(NS_LITERAL_STRING("load")); - } - } - UpdateImageState(true); } @@ -277,23 +264,11 @@ nsImageLoadingContent::OnLoadComplete(imgIRequest* aRequest, nsresult aStatus) } } - // We want to give the decoder a chance to find errors. If we haven't found - // an error yet and we've started decoding, either from the above - // StartDecoding or from some other place, we must only fire these events - // after we finish decoding. - uint32_t reqStatus; - aRequest->GetImageStatus(&reqStatus); - if (NS_SUCCEEDED(aStatus) && !(reqStatus & imgIRequest::STATUS_ERROR) && - (reqStatus & imgIRequest::STATUS_DECODE_STARTED) && - !(reqStatus & imgIRequest::STATUS_DECODE_COMPLETE)) { - mFireEventsOnDecode = true; + // Fire the appropriate DOM event. + if (NS_SUCCEEDED(aStatus)) { + FireEvent(NS_LITERAL_STRING("load")); } else { - // Fire the appropriate DOM event. - if (NS_SUCCEEDED(aStatus)) { - FireEvent(NS_LITERAL_STRING("load")); - } else { - FireEvent(NS_LITERAL_STRING("error")); - } + FireEvent(NS_LITERAL_STRING("error")); } nsCOMPtr thisNode = do_QueryInterface(static_cast(this)); diff --git a/dom/base/nsImageLoadingContent.h b/dom/base/nsImageLoadingContent.h index 36b130dbc0e0..8d23d379557f 100644 --- a/dom/base/nsImageLoadingContent.h +++ b/dom/base/nsImageLoadingContent.h @@ -410,7 +410,6 @@ private: bool mBroken : 1; bool mUserDisabled : 1; bool mSuppressed : 1; - bool mFireEventsOnDecode : 1; protected: /** diff --git a/image/Decoder.cpp b/image/Decoder.cpp index 8ce895f052aa..9de720488b49 100644 --- a/image/Decoder.cpp +++ b/image/Decoder.cpp @@ -83,9 +83,8 @@ Decoder::Init() // No re-initializing MOZ_ASSERT(!mInitialized, "Can't re-initialize a decoder!"); - // Fire OnStartDecode at init time to support bug 512435. if (!IsSizeDecode()) { - mProgress |= FLAG_DECODE_STARTED | FLAG_ONLOAD_BLOCKED; + mProgress |= FLAG_DECODE_STARTED; } // Implementation-specific initialization @@ -273,7 +272,7 @@ Decoder::CompleteDecode() } else { // We're not usable. Record some final progress indicating the error. if (!IsSizeDecode()) { - mProgress |= FLAG_DECODE_COMPLETE | FLAG_ONLOAD_UNBLOCKED; + mProgress |= FLAG_DECODE_COMPLETE; } mProgress |= FLAG_HAS_ERROR; } @@ -624,7 +623,7 @@ Decoder::PostFrameStop(Opacity aFrameOpacity /* = Opacity::TRANSPARENT */, mCurrentFrame->Finish(aFrameOpacity, aDisposalMethod, aTimeout, aBlendMethod); - mProgress |= FLAG_FRAME_COMPLETE | FLAG_ONLOAD_UNBLOCKED; + mProgress |= FLAG_FRAME_COMPLETE; // If we're not sending partial invalidations, then we send an invalidation // here when the first frame is complete. diff --git a/image/RasterImage.cpp b/image/RasterImage.cpp index e986ada72589..440297d3bf50 100644 --- a/image/RasterImage.cpp +++ b/image/RasterImage.cpp @@ -1211,11 +1211,9 @@ RasterImage::OnImageDataComplete(nsIRequest*, nsISupports*, nsresult aStatus, // to draw. (We may have already sent some of these notifications from // NotifyForDecodeOnlyOnDraw(), but ProgressTracker will ensure no duplicate // notifications get sent.) - loadProgress |= FLAG_ONLOAD_BLOCKED | - FLAG_DECODE_STARTED | + loadProgress |= FLAG_DECODE_STARTED | FLAG_FRAME_COMPLETE | - FLAG_DECODE_COMPLETE | - FLAG_ONLOAD_UNBLOCKED; + FLAG_DECODE_COMPLETE; } // Notify our listeners, which will fire this image's load event. @@ -1234,7 +1232,7 @@ RasterImage::NotifyForDecodeOnlyOnDraw() return; } - NotifyProgress(FLAG_DECODE_STARTED | FLAG_ONLOAD_BLOCKED); + NotifyProgress(FLAG_DECODE_STARTED); } nsresult diff --git a/image/test/browser/browser_bug666317.js b/image/test/browser/browser_bug666317.js index ed7024db399e..dfc6b91862df 100644 --- a/image/test/browser/browser_bug666317.js +++ b/image/test/browser/browser_bug666317.js @@ -41,6 +41,23 @@ function forceDecodeImg() { ctx.drawImage(img, 0, 0); } +function runAfterAsyncEvents(aCallback) { + function handlePostMessage(aEvent) { + if (aEvent.data == 'next') { + window.removeEventListener('message', handlePostMessage, false); + aCallback(); + } + } + + window.addEventListener('message', handlePostMessage, false); + + // We'll receive the 'message' event after everything else that's currently in + // the event queue (which is a stronger guarantee than setTimeout, because + // setTimeout events may be coalesced). This lets us ensure that we run + // aCallback *after* any asynchronous events are delivered. + window.postMessage('next', '*'); +} + function test() { // Enable the discarding pref. oldDiscardingPref = prefBranch.getBoolPref('discardable'); @@ -72,6 +89,13 @@ function step2() { // Check that the image is decoded. forceDecodeImg(); + + // The FRAME_COMPLETE notification is delivered asynchronously, so continue + // after we're sure it has been delivered. + runAfterAsyncEvents(() => step3(result, scriptedObserver, clonedRequest)); +} + +function step3(result, scriptedObserver, clonedRequest) { ok(isImgDecoded(), 'Image should initially be decoded.'); // Focus the old tab, then fire a memory-pressure notification. This should @@ -81,18 +105,12 @@ function step2() { .getService(Ci.nsIObserverService); os.notifyObservers(null, 'memory-pressure', 'heap-minimize'); - // The discard notification is delivered asynchronously, so pump the event - // loop before checking. - window.addEventListener('message', function (event) { - if (event.data == 'step3') { - step3(result, scriptedObserver, clonedRequest); - } - }, false); - - window.postMessage('step3', '*'); + // The DISCARD notification is delivered asynchronously, so continue after + // we're sure it has been delivered. + runAfterAsyncEvents(() => step4(result, scriptedObserver, clonedRequest)); } -function step3(result, scriptedObserver, clonedRequest) { +function step4(result, scriptedObserver, clonedRequest) { ok(result.wasDiscarded, 'Image should be discarded.'); // And we're done. diff --git a/image/test/mochitest/mochitest.ini b/image/test/mochitest/mochitest.ini index 0ea4e2922111..611d543637ab 100644 --- a/image/test/mochitest/mochitest.ini +++ b/image/test/mochitest/mochitest.ini @@ -70,7 +70,6 @@ skip-if = (toolkit == 'android' && processor == 'x86') #x86 only [test_bug496292.html] [test_bug497665.html] skip-if = (toolkit == 'android' && processor == 'x86') #x86 only -[test_bug512435.html] [test_bug552605-1.html] [test_bug552605-2.html] [test_bug553982.html] diff --git a/image/test/mochitest/test_bug512435.html b/image/test/mochitest/test_bug512435.html deleted file mode 100644 index 1bffca1647e0..000000000000 --- a/image/test/mochitest/test_bug512435.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - Test for Bug 512435 - - - - - - -Mozilla Bug 512435 - - - -
-
-
- - diff --git a/layout/reftests/css-break/reftest.list b/layout/reftests/css-break/reftest.list index ae58ccdfb696..eccad5dc895a 100644 --- a/layout/reftests/css-break/reftest.list +++ b/layout/reftests/css-break/reftest.list @@ -6,4 +6,4 @@ fuzzy(16,460) fuzzy-if(Android,10,3667) == box-decoration-break-with-outset-box- random-if(!gtkWidget) HTTP(..) == box-decoration-break-border-image.html box-decoration-break-border-image-ref.html == box-decoration-break-block-border-padding.html box-decoration-break-block-border-padding-ref.html == box-decoration-break-block-margin.html box-decoration-break-block-margin-ref.html -fuzzy-if(Android,8,6627) == box-decoration-break-first-letter.html box-decoration-break-first-letter-ref.html +fuzzy-if(!Android,1,5) fuzzy-if(Android,8,6627) == box-decoration-break-first-letter.html box-decoration-break-first-letter-ref.html