Title: [154202] trunk/Websites/bugs.webkit.org
Revision
154202
Author
[email protected]
Date
2013-08-16 13:04:47 -0700 (Fri, 16 Aug 2013)

Log Message

PrettyPatch: Wrap pre blocks
https://bugs.webkit.org/show_bug.cgi?id=119906

Reviewed by Darin Adler.

* PrettyPatch/PrettyPatch.rb:
<pre> will use the same wrap settings as the text class:
white-space: pre-wrap and word-wrap: break-word.

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/ChangeLog (154201 => 154202)


--- trunk/Websites/bugs.webkit.org/ChangeLog	2013-08-16 19:33:59 UTC (rev 154201)
+++ trunk/Websites/bugs.webkit.org/ChangeLog	2013-08-16 20:04:47 UTC (rev 154202)
@@ -1,3 +1,14 @@
+2013-08-16  David Farler  <[email protected]>
+
+        PrettyPatch: Wrap pre blocks
+        https://bugs.webkit.org/show_bug.cgi?id=119906
+
+        Reviewed by Darin Adler.
+
+        * PrettyPatch/PrettyPatch.rb:
+        <pre> will use the same wrap settings as the text class:
+        white-space: pre-wrap and word-wrap: break-word.
+
 2013-07-16  James Craig  <[email protected]>
 
         AX: Add a 'choose product' link for the new-ax-bug alias.

Modified: trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb (154201 => 154202)


--- trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb	2013-08-16 19:33:59 UTC (rev 154201)
+++ trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb	2013-08-16 20:04:47 UTC (rev 154202)
@@ -269,7 +269,7 @@
   background-color: #eee;
 }
 
-.text {
+pre, .text {
     padding-left: 5px;
     white-space: pre-wrap;
     word-wrap: break-word;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to