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

cfleizach at apple.com cfleizach at apple.com
Wed Dec 22 14:20:46 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9448e9c1fd4d9e7e765c51e80765d23721e421da
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 6 22:30:59 2010 +0000

    Unreviewed. Make test work on QT as well as other platforms.
    
    REGRESSION (r53857): AREA tag with tabindex="-1" displays focus ring after multiple mouse clicks.
    https://bugs.webkit.org/show_bug.cgi?id=45832
    
    * fast/events/mouse-focus-imagemap-expected.txt:
    * fast/events/mouse-focus-imagemap.html:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69242 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 5d8a46f..ce758d4 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-10-06  Chris Fleizach  <cfleizach at apple.com>
+
+        Unreviewed. Make test work on QT as well as other platforms.
+
+        REGRESSION (r53857): AREA tag with tabindex="-1" displays focus ring after multiple mouse clicks.
+        https://bugs.webkit.org/show_bug.cgi?id=45832
+
+        * fast/events/mouse-focus-imagemap-expected.txt:
+        * fast/events/mouse-focus-imagemap.html:
+
 2010-10-06  Albert J. Wong  <ajwong at chromium.org>
 
         [chromium] Unreviewed. Rebaseline more tests.
diff --git a/LayoutTests/fast/events/mouse-focus-imagemap-expected.txt b/LayoutTests/fast/events/mouse-focus-imagemap-expected.txt
index 84d497f..07a3e74 100644
--- a/LayoutTests/fast/events/mouse-focus-imagemap-expected.txt
+++ b/LayoutTests/fast/events/mouse-focus-imagemap-expected.txt
@@ -5,7 +5,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 
 PASS document.activeElement.id is 'focusable-area'
-PASS document.activeElement.id is 'focusable-area'
+PASS document.activeElement.id is 'focusable-area' || 'body'
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/events/mouse-focus-imagemap.html b/LayoutTests/fast/events/mouse-focus-imagemap.html
index f1fac56..55bf240 100644
--- a/LayoutTests/fast/events/mouse-focus-imagemap.html
+++ b/LayoutTests/fast/events/mouse-focus-imagemap.html
@@ -33,7 +33,9 @@ var successfullyParsed = false;
     eventSender.mouseMoveTo(700, 700);
     eventSender.mouseDown();
     eventSender.mouseUp();
-    shouldBe("document.activeElement.id", "'focusable-area'");
+
+    // Some platforms (QT) set focus to the body if clicking on a non-focusable area.
+    shouldBe("document.activeElement.id", "'focusable-area' || 'body'");
 
     successfullyParsed = true;
 </script>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list