From a9a76664ab0bc7d3131465081ba50831bdd238ab Mon Sep 17 00:00:00 2001 From: Timothy Nikkel Date: Wed, 24 Jun 2009 21:09:26 +1200 Subject: [PATCH] Bug 458651. Text hidden with 'blink' should still receive events. r+sr=roc --HG-- extra : rebase_source : cfde922d71be51795c3d3fa398faead1d00e2e55 --- layout/generic/nsTextFrameThebes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/generic/nsTextFrameThebes.cpp b/layout/generic/nsTextFrameThebes.cpp index c7732b1cc6c3..b25aa9d03441 100644 --- a/layout/generic/nsTextFrameThebes.cpp +++ b/layout/generic/nsTextFrameThebes.cpp @@ -3880,7 +3880,7 @@ nsTextFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder, DO_GLOBAL_REFLOW_COUNT_DSP("nsTextFrame"); if ((0 != (mState & TEXT_BLINK_ON_OR_PRINTING)) && nsBlinkTimer::GetBlinkIsOff() && - PresContext()->IsDynamic()) + PresContext()->IsDynamic() && !aBuilder->IsForEventDelivery()) return NS_OK; return aLists.Content()->AppendNewToTop(new (aBuilder) nsDisplayText(this));