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

darin at apple.com darin at apple.com
Wed Dec 22 11:27:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 756bb6d568522fce5bdff45cd2d57981d8c5a6ed
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 26 06:57:55 2010 +0000

    2010-07-25  Darin Adler  <darin at apple.com>
    
            Reviewed by Dan Bernstein.
    
            WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
            https://bugs.webkit.org/show_bug.cgi?id=42326
    
            * platform/mac-wk2/Skipped: Removed all the tests from the list
            that were there only because they called dumpSelectionRect. Most of
            them pass now.
    2010-07-25  Darin Adler  <darin at apple.com>
    
            Reviewed by Dan Bernstein.
    
            WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
            https://bugs.webkit.org/show_bug.cgi?id=42326
    
            * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
            Added dumpSelectionRect.
    
            * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
            (WTR::LayoutTestController::dumpSelectionRect): Added. For now, this
            does nothing because its purpose is to change pixel test output and
            we do not have pixel tests implemented yet.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64033 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 2ff6263..f24be96 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,14 @@
+2010-07-25  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dan Bernstein.
+
+        WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
+        https://bugs.webkit.org/show_bug.cgi?id=42326
+
+        * platform/mac-wk2/Skipped: Removed all the tests from the list
+        that were there only because they called dumpSelectionRect. Most of
+        them pass now.
+
 2010-07-23  Philippe Normand  <pnormand at igalia.com>
 
         Reviewed by Eric Carlson.
diff --git a/LayoutTests/platform/mac-wk2/Skipped b/LayoutTests/platform/mac-wk2/Skipped
index f292462..42f5b26 100644
--- a/LayoutTests/platform/mac-wk2/Skipped
+++ b/LayoutTests/platform/mac-wk2/Skipped
@@ -1779,37 +1779,6 @@ webarchive/test-table-background.html
 webarchive/test-td-background.html
 webarchive/test-xml-stylesheet.xml
 
-# WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
-# <https://bugs.webkit.org/show_bug.cgi?id=42326>
-svg/text/foreignObject-text-clipping-bug.xml
-svg/text/text-align-01-b.svg
-svg/text/text-align-02-b.svg
-svg/text/text-align-03-b.svg
-svg/text/text-align-04-b.svg
-svg/text/text-align-05-b.svg
-svg/text/text-align-06-b.svg
-svg/text/text-altglyph-01-b.svg
-svg/text/text-deco-01-b.svg
-svg/text/text-fonts-01-t.svg
-svg/text/text-fonts-02-t.svg
-svg/text/text-intro-05-t.svg
-svg/text/text-path-01-b.svg
-svg/text/text-spacing-01-b.svg
-svg/text/text-text-01-b.svg
-svg/text/text-text-03-b.svg
-svg/text/text-text-04-t.svg
-svg/text/text-text-05-t.svg
-svg/text/text-text-06-t.svg
-svg/text/text-text-07-t.svg
-svg/text/text-text-08-b.svg
-svg/text/text-tref-01-b.svg
-svg/text/text-tselect-01-b.svg
-svg/text/text-tselect-02-f.svg
-svg/text/text-tspan-01-b.svg
-svg/text/text-ws-01-t.svg
-svg/text/text-ws-02-t.svg
-svg/text/textPathBoundsBug.svg
-
 # WebKitTestRunner needs to support layoutTestController.evaluateScriptInIsolatedWorld
 # <https://bugs.webkit.org/show_bug.cgi?id=42327>
 http/tests/security/isolatedWorld/all-window-properties.html
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4cd7ab0..317c4f4 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,20 @@
 2010-07-25  Darin Adler  <darin at apple.com>
 
+        Reviewed by Dan Bernstein.
+
+        WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
+        https://bugs.webkit.org/show_bug.cgi?id=42326
+
+        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
+        Added dumpSelectionRect.
+
+        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
+        (WTR::LayoutTestController::dumpSelectionRect): Added. For now, this
+        does nothing because its purpose is to change pixel test output and
+        we do not have pixel tests implemented yet.
+
+2010-07-25  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej Stachowiak.
 
         WebKitTestRunner needs to support layoutTestController.keepWebHistory
diff --git a/WebKitTools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl b/WebKitTools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl
index ea7b835..08e93b6 100644
--- a/WebKitTools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl
+++ b/WebKitTools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl
@@ -35,6 +35,7 @@ module WTR {
         // Other dumping.
         void dumpChildFrameScrollPositions();
         void dumpEditingCallbacks();
+        void dumpSelectionRect();
         void dumpStatusCallbacks();
 
         // Special options.
diff --git a/WebKitTools/WebKitTestRunner/InjectedBundle/LayoutTestController.h b/WebKitTools/WebKitTestRunner/InjectedBundle/LayoutTestController.h
index 8d52bb7..3f24064 100644
--- a/WebKitTools/WebKitTestRunner/InjectedBundle/LayoutTestController.h
+++ b/WebKitTools/WebKitTestRunner/InjectedBundle/LayoutTestController.h
@@ -53,6 +53,7 @@ public:
     // Other dumping.
     void dumpChildFrameScrollPositions() { m_shouldDumpAllFrameScrollPositions = true; }
     void dumpEditingCallbacks() { m_dumpEditingCallbacks = true; }
+    void dumpSelectionRect() { } // Will need to do something when we support pixel tests.
     void dumpStatusCallbacks() { m_dumpStatusCallbacks = true; }
 
     // Special options.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list