Title: [111014] trunk/Source/WebKit/gtk
Revision
111014
Author
[email protected]
Date
2012-03-16 09:40:54 -0700 (Fri, 16 Mar 2012)

Log Message

WebKit/gtk/resources/error.html font-size error
https://bugs.webkit.org/show_bug.cgi?id=39232

Patch by Landry Breuil <[email protected]> on 2012-03-14
Reviewed by Martin Robinson.

Fix font-size in the 404 error page. Apparently the % is filtered out,
so 120% becomes 120 and the error message is huge. Experienced in epiphany.

* resources/error.html: Double the % so it doesn't get filtered

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (111013 => 111014)


--- trunk/Source/WebKit/gtk/ChangeLog	2012-03-16 16:26:26 UTC (rev 111013)
+++ trunk/Source/WebKit/gtk/ChangeLog	2012-03-16 16:40:54 UTC (rev 111014)
@@ -1,3 +1,15 @@
+2012-03-14  Landry Breuil  <[email protected]>
+
+        WebKit/gtk/resources/error.html font-size error
+        https://bugs.webkit.org/show_bug.cgi?id=39232
+
+        Reviewed by Martin Robinson.
+
+        Fix font-size in the 404 error page. Apparently the % is filtered out,
+        so 120% becomes 120 and the error message is huge. Experienced in epiphany.
+
+        * resources/error.html: Double the % so it doesn't get filtered
+
 2012-03-16  Carlos Garcia Campos  <[email protected]> and Sergio Villar Senin  <[email protected]>
 
         [GTK] WebKitIconDatabase doesn't keep icons cached

Modified: trunk/Source/WebKit/gtk/resources/error.html (111013 => 111014)


--- trunk/Source/WebKit/gtk/resources/error.html	2012-03-16 16:26:26 UTC (rev 111013)
+++ trunk/Source/WebKit/gtk/resources/error.html	2012-03-16 16:40:54 UTC (rev 111014)
@@ -21,12 +21,12 @@
 }
 
 #errorTitleText {
- font-size: 120%;
+ font-size: 120%%;
  font-weight: bold;
 }
 
 #errorMessageText {
- font-size: 80%;
+ font-size: 80%%;
 }
 
 </style>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to