Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLImageLoader.cpp
index acea825..44fc879 100644 (file)
@@ -29,6 +29,7 @@
 #include "core/html/HTMLImageElement.h"
 #include "core/html/HTMLObjectElement.h"
 #include "core/html/parser/HTMLParserIdioms.h"
+#include "platform/Logging.h"
 
 namespace blink {
 
@@ -43,6 +44,8 @@ HTMLImageLoader::~HTMLImageLoader()
 
 void HTMLImageLoader::dispatchLoadEvent()
 {
+    WTF_LOG(Timers, "HTMLImageLoader::dispatchLoadEvent %p", this);
+
     // HTMLVideoElement uses this class to load the poster image, but it should not fire events for loading or failure.
     if (isHTMLVideoElement(*element()))
         return;