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

tony at chromium.org tony at chromium.org
Wed Dec 22 11:23:56 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f133285a9260859523837d43bd124ef6d8bf08ba
Author: tony at chromium.org <tony at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 21 21:16:37 2010 +0000

    2010-07-21  Tony Chang  <tony at chromium.org>
    
            Reviewed by Adam Barth.
    
            convert more layout tests from -khtml to -webkit
            https://bugs.webkit.org/show_bug.cgi?id=42786
    
            This is a follow up to r63854.
    
            * fast/backgrounds/size/backgroundSize02.html:
            * fast/backgrounds/size/backgroundSize03.html:
            * fast/backgrounds/size/backgroundSize04.html:
            * fast/backgrounds/size/backgroundSize05.html:
            * fast/backgrounds/size/backgroundSize06.html:
            * fast/backgrounds/size/backgroundSize07.html:
            * fast/backgrounds/size/backgroundSize08.html:
            * fast/backgrounds/size/backgroundSize09.html:
            * fast/backgrounds/size/backgroundSize10.html:
            * fast/backgrounds/size/backgroundSize11.html:
            * fast/backgrounds/size/backgroundSize12.html:
            * fast/backgrounds/size/backgroundSize13.html:
            * fast/backgrounds/size/backgroundSize14.html:
            * fast/backgrounds/size/backgroundSize15.html:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63857 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 9725b7f..5dd5454 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,27 @@
+2010-07-21  Tony Chang  <tony at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        convert more layout tests from -khtml to -webkit
+        https://bugs.webkit.org/show_bug.cgi?id=42786
+
+        This is a follow up to r63854.
+
+        * fast/backgrounds/size/backgroundSize02.html:
+        * fast/backgrounds/size/backgroundSize03.html:
+        * fast/backgrounds/size/backgroundSize04.html:
+        * fast/backgrounds/size/backgroundSize05.html:
+        * fast/backgrounds/size/backgroundSize06.html:
+        * fast/backgrounds/size/backgroundSize07.html:
+        * fast/backgrounds/size/backgroundSize08.html:
+        * fast/backgrounds/size/backgroundSize09.html:
+        * fast/backgrounds/size/backgroundSize10.html:
+        * fast/backgrounds/size/backgroundSize11.html:
+        * fast/backgrounds/size/backgroundSize12.html:
+        * fast/backgrounds/size/backgroundSize13.html:
+        * fast/backgrounds/size/backgroundSize14.html:
+        * fast/backgrounds/size/backgroundSize15.html:
+
 2010-07-21  Peter Beverloo  <peter at lvp-media.com>
 
         Reviewed by Eric Carlson.
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize02.html b/LayoutTests/fast/backgrounds/size/backgroundSize02.html
index e3b946b..bcd77ca 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize02.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize02.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 50% auto;
+        -webkit-background-size: 50% auto;
     }
 </style>
 </head>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize03.html b/LayoutTests/fast/backgrounds/size/backgroundSize03.html
index 0cc91c7..54532a3 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize03.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize03.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: auto;
+        -webkit-background-size: auto;
     }
 </style>
 </head>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize04.html b/LayoutTests/fast/backgrounds/size/backgroundSize04.html
index c326c52..28c3959 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize04.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize04.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 100%;
+        -webkit-background-size: 100%;
     }
 </style>
 </head>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize05.html b/LayoutTests/fast/backgrounds/size/backgroundSize05.html
index 008f7c6..c87a559 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize05.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize05.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 100 auto;
+        -webkit-background-size: 100 auto;
     }
 </style>
 </head>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize06.html b/LayoutTests/fast/backgrounds/size/backgroundSize06.html
index f821133..736446b 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize06.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize06.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 33% 50%;
+        -webkit-background-size: 33% 50%;
     }
 </style>
 </head>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize07.html b/LayoutTests/fast/backgrounds/size/backgroundSize07.html
index 0fed79b..3b71134 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize07.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize07.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 33%;
+        -webkit-background-size: 33%;
         background-repeat: repeat-x;
     }
 </style>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize08.html b/LayoutTests/fast/backgrounds/size/backgroundSize08.html
index ea78764..c4bf356 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize08.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize08.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: auto 33%;
+        -webkit-background-size: auto 33%;
         background-repeat: repeat-y;
     }
 </style>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize09.html b/LayoutTests/fast/backgrounds/size/backgroundSize09.html
index 3e0dbee..7e69a27 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize09.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize09.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 100 auto;
+        -webkit-background-size: 100 auto;
         background-repeat: no-repeat;
     }
 </style>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize10.html b/LayoutTests/fast/backgrounds/size/backgroundSize10.html
index e432d5e..e9ce554 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize10.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize10.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 100 auto;
+        -webkit-background-size: 100 auto;
         background-repeat: no-repeat;
         background-position: center;
     }
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize11.html b/LayoutTests/fast/backgrounds/size/backgroundSize11.html
index 3d740c4..8f603ea 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize11.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize11.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: 100 auto;
+        -webkit-background-size: 100 auto;
         background-repeat: no-repeat;
         background-position: right;
     }
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize12.html b/LayoutTests/fast/backgrounds/size/backgroundSize12.html
index e7044bd..3f22eca 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize12.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize12.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background-image:url(resources/bikes.bmp); 
-        -khtml-background-size: auto 150;
+        -webkit-background-size: auto 150;
         background-position: right;
     }
 </style>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize13.html b/LayoutTests/fast/backgrounds/size/backgroundSize13.html
index c48e28d..1702b33 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize13.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize13.html
@@ -2,7 +2,7 @@
 <style>
     body {
         background: url(resources/bikes.bmp);
-        -khtml-background-size: 50% auto;
+        -webkit-background-size: 50% auto;
         background-position: 100% 99%;
         background-attachment: fixed;
         background-repeat: no-repeat; 
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize14.html b/LayoutTests/fast/backgrounds/size/backgroundSize14.html
index a95c493..e2a5f55 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize14.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize14.html
@@ -5,7 +5,7 @@ body
 { 
     background-image: url('resources/bikes.bmp');
     background-position: 33% 33%;
-    -khtml-background-size: 50% auto;
+    -webkit-background-size: 50% auto;
     background-repeat:no-repeat;
 }
 </style>
diff --git a/LayoutTests/fast/backgrounds/size/backgroundSize15.html b/LayoutTests/fast/backgrounds/size/backgroundSize15.html
index a92d8ea..9b9f149 100644
--- a/LayoutTests/fast/backgrounds/size/backgroundSize15.html
+++ b/LayoutTests/fast/backgrounds/size/backgroundSize15.html
@@ -2,7 +2,7 @@
 <style>
 div { 
     background-image:url(resources/bikes.bmp); 
-    -khtml-background-size: 133px 135px;
+    -webkit-background-size: 133px 135px;
     }
 </style>
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list