[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

aroben at apple.com aroben at apple.com
Thu Apr 8 00:54:38 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 4a1f0f689c6a0387288dcdda51ed8159a9d76ba0
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 5 18:14:47 2010 +0000

    Don't show HostWindows by default
    
    This was making WebKitAPITest very flashy as windows appeared and
    disappeared.
    
    Part of <http://webkit.org/b/33212> Small fixes/improvements to
    WebKitAPITest
    
    Reviewed by Sam Weinig.
    
    * WebKitAPITest/HostWindow.cpp:
    (WebKitAPITest::HostWindow::initialize): Removed the WS_VISIBLE style
    from the window.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52804 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 3528856..bdd852d 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,21 @@
 2010-01-05  Adam Roben  <aroben at apple.com>
 
+        Don't show HostWindows by default
+
+        This was making WebKitAPITest very flashy as windows appeared and
+        disappeared.
+
+        Part of <http://webkit.org/b/33212> Small fixes/improvements to
+        WebKitAPITest
+
+        Reviewed by Sam Weinig.
+
+        * WebKitAPITest/HostWindow.cpp:
+        (WebKitAPITest::HostWindow::initialize): Removed the WS_VISIBLE style
+        from the window.
+
+2010-01-05  Adam Roben  <aroben at apple.com>
+
         Don't hang in WebKitAPITest if no messages have been posted
 
         Part of <http://webkit.org/b/33212> Small fixes/improvements to
diff --git a/WebKitTools/WebKitAPITest/HostWindow.cpp b/WebKitTools/WebKitAPITest/HostWindow.cpp
index da7d428..b364831 100644
--- a/WebKitTools/WebKitAPITest/HostWindow.cpp
+++ b/WebKitTools/WebKitAPITest/HostWindow.cpp
@@ -36,7 +36,7 @@ HostWindow::HostWindow()
 bool HostWindow::initialize()
 {
     registerWindowClass();
-    m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitAPITest", WS_OVERLAPPEDWINDOW | WS_VISIBLE, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, GetModuleHandle(0), 0);
+    m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitAPITest", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, GetModuleHandle(0), 0);
     return m_window;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list