[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:17 UTC 2010


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

    Another attempt to get this test to pass for GTK.
    
    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@53863 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 2bff1ea..1ae3f5c 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-26  Chris Fleizach  <cfleizach at apple.com>
+
+        Another attempt to get this test to pass for GTK.
+
+        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-25  Darin Fisher  <darin at chromium.org>
 
         Reviewed by Brady Eidson.
diff --git a/LayoutTests/fast/events/tab-imagemap-expected.txt b/LayoutTests/fast/events/tab-imagemap-expected.txt
index 4e0f2b9..e2ea63c 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' || 'body'
+PASS document.activeElement.id == 'area1' || document.activeElement.id == 'body' is true
 
diff --git a/LayoutTests/fast/events/tab-imagemap.html b/LayoutTests/fast/events/tab-imagemap.html
index a65401b..89e61ae 100644
--- a/LayoutTests/fast/events/tab-imagemap.html
+++ b/LayoutTests/fast/events/tab-imagemap.html
@@ -44,10 +44,10 @@ var successfullyParsed = false;
     eventSender.keyDown('\t');
     shouldBe("document.activeElement.id", "'area6'");
 
-    // 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.
+    // We'll skip over area7 because its tabindex=-1. On the Mac, the wrap around should give 
+    // area1. On GTK, we will go to the body element.
     eventSender.keyDown('\t');
-    shouldBe("document.activeElement.id", "'area1' || 'body'");
+    shouldBe("document.activeElement.id == 'area1' || document.activeElement.id == 'body'", "true");
 
     successfullyParsed = true;
 </script>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list