Bug 856413 - Once UIEvent#view property is read, value of UIEvent#view property will be null, r=Ms2ger

--HG--
extra : rebase_source : d033288850b3d9594510a34f12ba43fe3097d969
This commit is contained in:
Olli Pettay 2013-04-02 19:46:06 +03:00
parent 1156d308c4
commit ed216be99e

View File

@ -100,7 +100,7 @@ public:
already_AddRefed<nsIDOMWindow> GetView()
{
nsCOMPtr<nsIDOMWindow> view = mView;
return mView.forget();
return view.forget();
}
int32_t Detail()