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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:46:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a59cffa588f8b6d4ed0fcbaecc39a3e3f45ed725
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 3 20:56:08 2003 +0000

    	- fixed 3167770 -- visited and unvisited link colors are too
    	close in default stylesheet
    	- fixed 3315344 -- default active link color should be red as
    	in other browsers
    
            Reviewed by Hyatt
    
            * khtml/css/html4.css:
    	Changed a:link and a:visited colors to match Mozilla
    	(a slightly lighter blue for link, and a purpley shade instead
    	of navy for visited). Also changed a:link:active and
    	a:visited:active to be red instead of black.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4586 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 8db1d67..88eb200 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,18 @@
+2003-07-03  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3167770 -- visited and unvisited link colors are too 
+	close in default stylesheet
+	- fixed 3315344 -- default active link color should be red as
+	in other browsers
+
+        Reviewed by Hyatt
+
+        * khtml/css/html4.css:
+	Changed a:link and a:visited colors to match Mozilla
+	(a slightly lighter blue for link, and a purpley shade instead
+	of navy for visited). Also changed a:link:active and 
+	a:visited:active to be red instead of black.
+
 2003-07-03  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 8db1d67..88eb200 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,18 @@
+2003-07-03  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3167770 -- visited and unvisited link colors are too 
+	close in default stylesheet
+	- fixed 3315344 -- default active link color should be red as
+	in other browsers
+
+        Reviewed by Hyatt
+
+        * khtml/css/html4.css:
+	Changed a:link and a:visited colors to match Mozilla
+	(a slightly lighter blue for link, and a purpley shade instead
+	of navy for visited). Also changed a:link:active and 
+	a:visited:active to be red instead of black.
+
 2003-07-03  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/khtml/css/html4.css b/WebCore/khtml/css/html4.css
index ce65b9e..4942bf7 100644
--- a/WebCore/khtml/css/html4.css
+++ b/WebCore/khtml/css/html4.css
@@ -440,12 +440,13 @@ acronym {
 }
 
 :focus          { outline: 1px dotted invert }
-a:link          { color: blue; text-decoration: underline; }
-a:link:active          { color: black; outline: gray 1px dotted; }
-a:visited              { color: navy; text-decoration: underline; }
-a:visited:active       { color: black; outline: gray 1px dotted; }
+a:link          { color: #0000EE; text-decoration: underline; }
+a:link:active          { color: red; outline: gray 1px dotted; }
+a:visited              { color: #551A8B; text-decoration: underline; }
+a:visited:active       { color: red; outline: gray 1px dotted; }
 
-/* ### :before is not supported at the moment
+/* ### :before is now supported, but we haven't tried reinstating this
+   ### rule that was comment out long ago.
       BR:before       { content: "\n" }
 */
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list