[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

cfleizach at apple.com cfleizach at apple.com
Thu Feb 4 21:28:13 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit debc9eaf030b6ea48b04f9fda7798910ecb1575a
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 26 19:00:44 2010 +0000

    One more attempt to get GTK version to pass.
    
    Add ability for image maps to be focused via tabbing
    https://bugs.webkit.org/show_bug.cgi?id=17513
    
    * fast/events/tab-imagemap-expected.txt:
    * fast/events/tab-imagemap.html:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53859 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 5c90474..55102f4 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,15 @@
 2010-01-26  Chris Fleizach  <cfleizach at apple.com>
 
+        One more attempt to get GTK version to pass.
+
+        Add ability for image maps to be focused via tabbing
+        https://bugs.webkit.org/show_bug.cgi?id=17513
+
+        * fast/events/tab-imagemap-expected.txt:
+        * fast/events/tab-imagemap.html:
+
+2010-01-26  Chris Fleizach  <cfleizach at apple.com>
+
         Unreviewed.
 
         Attempt to make this test pass on GTK.
diff --git a/LayoutTests/fast/events/tab-imagemap-expected.txt b/LayoutTests/fast/events/tab-imagemap-expected.txt
index 9bcb5bc..4e0f2b9 100644
--- a/LayoutTests/fast/events/tab-imagemap-expected.txt
+++ b/LayoutTests/fast/events/tab-imagemap-expected.txt
@@ -9,5 +9,5 @@ PASS document.activeElement.id is 'area2'
 PASS document.activeElement.id is 'area3'
 PASS document.activeElement.id is 'area5'
 PASS document.activeElement.id is 'area6'
-PASS document.activeElement.id is 'area1'
+PASS document.activeElement.id is 'area1' || 'body'
 
diff --git a/LayoutTests/fast/events/tab-imagemap.html b/LayoutTests/fast/events/tab-imagemap.html
index 990fb73..a65401b 100644
--- a/LayoutTests/fast/events/tab-imagemap.html
+++ b/LayoutTests/fast/events/tab-imagemap.html
@@ -6,7 +6,7 @@
 var successfullyParsed = false;
 </script>
 <script src="../js/resources/js-test-pre.js"></script>
-<body id="body" tabindex=-1>
+<body id="body">
 
 <map name="mymap">
 <area id="area1" shape="circle" coords="70,84,51" href="1">
@@ -44,9 +44,10 @@ var successfullyParsed = false;
     eventSender.keyDown('\t');
     shouldBe("document.activeElement.id", "'area6'");
 
-    // We'll skip over area7 because its tabindex=-1
+    // We'll skip over area7 because its tabindex=-1. On Mac and others, we'll wrap around to area1.
+    // On GTK, we'll go to the body element next.
     eventSender.keyDown('\t');
-    shouldBe("document.activeElement.id", "'area1'");
+    shouldBe("document.activeElement.id", "'area1' || 'body'");
 
     successfullyParsed = true;
 </script>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list