[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:08:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 321d446bca649b83add88f3879482774e02cebf1
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 26 02:04:18 2002 +0000

    	Use ^= to refer to OBJECTs with TYPEs that start with "image/". This is better than hard-coding image mime types.
    
            * khtml/css/html4.css:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2870 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 4073833..ec45d08 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
 2002-11-25  Chris Blumenberg  <cblu at apple.com>
 
+	Use ^= to refer to OBJECTs with TYPEs that start with "image/". This is better than hard-coding image mime types.
+
+        * khtml/css/html4.css:
+
+2002-11-25  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 2987001 - spurious mime-type errors from <object> images
 
 	KHTML didn't seem to have any clean support for OBJECT tags that are images. Added support for that.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 4073833..ec45d08 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,11 @@
 2002-11-25  Chris Blumenberg  <cblu at apple.com>
 
+	Use ^= to refer to OBJECTs with TYPEs that start with "image/". This is better than hard-coding image mime types.
+
+        * khtml/css/html4.css:
+
+2002-11-25  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 2987001 - spurious mime-type errors from <object> images
 
 	KHTML didn't seem to have any clean support for OBJECT tags that are images. Added support for that.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 4073833..ec45d08 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,11 @@
 2002-11-25  Chris Blumenberg  <cblu at apple.com>
 
+	Use ^= to refer to OBJECTs with TYPEs that start with "image/". This is better than hard-coding image mime types.
+
+        * khtml/css/html4.css:
+
+2002-11-25  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 2987001 - spurious mime-type errors from <object> images
 
 	KHTML didn't seem to have any clean support for OBJECT tags that are images. Added support for that.
diff --git a/WebCore/khtml/css/html4.css b/WebCore/khtml/css/html4.css
index cfa46b6..03e3db3 100644
--- a/WebCore/khtml/css/html4.css
+++ b/WebCore/khtml/css/html4.css
@@ -103,27 +103,15 @@ Q:after  {
 IFRAME {
 	display: block;
 }
-
       
 OBJECT { 
 	display: block;
 } 
 
-/* Dave: Please add support for ~ so we can match on "image/" instead specific image mime types. */ 
-
-OBJECT[type="image/png"] {
-	display: inline;
-}
-
-OBJECT[type="image/gif"] {
+OBJECT[type^="image/"] {
 	display: inline;
 }
 
-OBJECT[type="image/jpeg"] {
-	display: inline;
-}
-
-
 APPLET { 
 	display: block;
 } 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list