[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

jcivelli at chromium.org jcivelli at chromium.org
Wed Dec 22 11:12:32 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit af45551cb2c2950dd5d37ea29e9fbc80a87af5ed
Author: jcivelli at chromium.org <jcivelli at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 15 02:16:22 2010 +0000

    2010-07-14  Jay Civelli  <jcivelli at chromium.org>
    
            Reviewed by David Levin.
    
            [chromium] don't restrict the width of the autofill popup.
            https://bugs.webkit.org/show_bug.cgi?id=42206
    
            * src/WebViewImpl.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63391 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 4b8b78d..67c01ed 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,12 @@
+2010-07-14  Jay Civelli  <jcivelli at chromium.org>
+
+        Reviewed by David Levin.
+
+        [chromium] don't restrict the width of the autofill popup.
+        https://bugs.webkit.org/show_bug.cgi?id=42206
+
+        * src/WebViewImpl.cpp:
+
 2010-07-14  Victor Wang  <victorw at chromium.org>
 
         Reviewed by Darin Fisher.
diff --git a/WebKit/chromium/src/WebViewImpl.cpp b/WebKit/chromium/src/WebViewImpl.cpp
index cbfee63..a04fd1a 100644
--- a/WebKit/chromium/src/WebViewImpl.cpp
+++ b/WebKit/chromium/src/WebViewImpl.cpp
@@ -160,10 +160,11 @@ COMPILE_ASSERT_MATCHING_ENUM(DragOperationDelete);
 COMPILE_ASSERT_MATCHING_ENUM(DragOperationEvery);
 
 static const PopupContainerSettings autoFillPopupSettings = {
-    false,  // setTextOnIndexChange
-    false,  // acceptOnAbandon
-    true,   // loopSelectionNavigation
-    true,   // restrictWidthOfListBox. Same as other browser (Fx, IE, and safari)
+    false, // setTextOnIndexChange
+    false, // acceptOnAbandon
+    true,  // loopSelectionNavigation
+    false, // restrictWidthOfListBox (For security reasons show the entire entry
+           // so the user doesn't enter information it did not intend to.)
     // For suggestions, we use the direction of the input field as the direction
     // of the popup items. The main reason is to keep the display of items in
     // drop-down the same as the items in the input field.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list