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

mrobinson at webkit.org mrobinson at webkit.org
Wed Dec 22 14:40:22 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1a36390bfcb080fdf2962d8519711812cb829668
Author: mrobinson at webkit.org <mrobinson at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 15 15:56:18 2010 +0000

    2010-10-15  Martin Robinson  <mrobinson at igalia.com>
    
            Fix my rebaseline sanfu.
    
            * fast/forms/mailto/advanced-get.html:
            * fast/forms/mailto/advanced-put.html:
            * platform/gtk/fast/forms/mailto/advanced-get-expected.txt: Copied from LayoutTests/fast/forms/mailto/advanced-get-expected.txt.
            * platform/gtk/fast/forms/mailto/advanced-put-expected.txt: Copied from LayoutTests/fast/forms/mailto/advanced-put-expected.txt.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69855 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 5d71788..539f3c2 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,14 @@
 2010-10-15  Martin Robinson  <mrobinson at igalia.com>
 
+        Fix my rebaseline sanfu.
+
+        * fast/forms/mailto/advanced-get.html:
+        * fast/forms/mailto/advanced-put.html:
+        * platform/gtk/fast/forms/mailto/advanced-get-expected.txt: Copied from LayoutTests/fast/forms/mailto/advanced-get-expected.txt.
+        * platform/gtk/fast/forms/mailto/advanced-put-expected.txt: Copied from LayoutTests/fast/forms/mailto/advanced-put-expected.txt.
+
+2010-10-15  Martin Robinson  <mrobinson at igalia.com>
+
         Rebaseline a few other failing tests. They differ because
         dumpAsText output depends on whether or not certain content
         reaches the edge of the view and wraps.
diff --git a/LayoutTests/fast/forms/mailto/advanced-get.html b/LayoutTests/fast/forms/mailto/advanced-get.html
index 35fdd05..9db9040 100644
--- a/LayoutTests/fast/forms/mailto/advanced-get.html
+++ b/LayoutTests/fast/forms/mailto/advanced-get.html
@@ -1,4 +1,29 @@
-Policy delegate: attempt to load mailto:?to=to1%40site.com%2Cto2%40site.com%2Cto3%40site.com&cc=cc1%40site.com%2Ccc2%40site.com%2Ccc3%40site.com&bcc=bcc1%40site.com%2Cbcc2%40site.com%2Cbcc3%40site.com&subject=m%26m%3B%3F%3D&body=line1%0D%0Aline2%0D%0Aline3%0D%0Aline4 with navigation type 'form submitted'
-Press Compose button and check that the created e-mail has correct headers and body.
-
-         
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>action="mailto" GET method</title>
+        <script>
+            function test() {
+              if (window.layoutTestController) {
+                layoutTestController.dumpAsText();
+                layoutTestController.waitForPolicyDelegate();
+                document.getElementsByTagName("form")[0].submit();
+              }
+            }
+        </script>
+    </head>
+    <body onload="test()">
+        <p>Press Compose button and check that the created e-mail has correct headers and body.</p>
+        <form action="mailto:" method="get">
+            <input name="to" value="to1 at site.com,to2 at site.com,to3 at site.com">
+            <input name="cc" value="cc1 at site.com,cc2 at site.com,cc3 at site.com">
+            <input name="bcc" value="bcc1 at site.com,bcc2 at site.com,bcc3 at site.com">
+            <input name="subject" value="m&amp;m;?=">
+<textarea name="body">line1
+line2
+line3
+line4</textarea>
+            <input type="submit" value="Compose">
+        </form>
+    </body>
+</html>
diff --git a/LayoutTests/fast/forms/mailto/advanced-put.html b/LayoutTests/fast/forms/mailto/advanced-put.html
index 35fdd05..d2aec50 100644
--- a/LayoutTests/fast/forms/mailto/advanced-put.html
+++ b/LayoutTests/fast/forms/mailto/advanced-put.html
@@ -1,4 +1,29 @@
-Policy delegate: attempt to load mailto:?to=to1%40site.com%2Cto2%40site.com%2Cto3%40site.com&cc=cc1%40site.com%2Ccc2%40site.com%2Ccc3%40site.com&bcc=bcc1%40site.com%2Cbcc2%40site.com%2Cbcc3%40site.com&subject=m%26m%3B%3F%3D&body=line1%0D%0Aline2%0D%0Aline3%0D%0Aline4 with navigation type 'form submitted'
-Press Compose button and check that the created e-mail has correct headers and body.
-
-         
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>action="mailto" PUT method</title>
+        <script>
+            function test() {
+              if (window.layoutTestController) {
+                layoutTestController.dumpAsText();
+                layoutTestController.waitForPolicyDelegate();
+                document.getElementsByTagName("form")[0].submit();
+              }
+            }
+        </script>
+    </head>
+    <body onload="test()">
+        <p>Press Compose button and check that the created e-mail has correct headers and body.</p>
+        <form action="mailto:" method="put">
+            <input name="to" value="to1 at site.com,to2 at site.com,to3 at site.com">
+            <input name="cc" value="cc1 at site.com,cc2 at site.com,cc3 at site.com">
+            <input name="bcc" value="bcc1 at site.com,bcc2 at site.com,bcc3 at site.com">
+            <input name="subject" value="m&amp;m;?=">
+<textarea name="body">line1
+line2
+line3
+line4</textarea>
+            <input type="submit" value="Compose">
+        </form>
+    </body>
+</html>
diff --git a/LayoutTests/fast/forms/mailto/advanced-get-expected.txt b/LayoutTests/platform/gtk/fast/forms/mailto/advanced-get-expected.txt
similarity index 100%
copy from LayoutTests/fast/forms/mailto/advanced-get-expected.txt
copy to LayoutTests/platform/gtk/fast/forms/mailto/advanced-get-expected.txt
diff --git a/LayoutTests/fast/forms/mailto/advanced-put-expected.txt b/LayoutTests/platform/gtk/fast/forms/mailto/advanced-put-expected.txt
similarity index 100%
copy from LayoutTests/fast/forms/mailto/advanced-put-expected.txt
copy to LayoutTests/platform/gtk/fast/forms/mailto/advanced-put-expected.txt

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list