diff options
author | 2008-10-20 22:56:33 +0000 | |
---|---|---|
committer | 2008-10-20 22:56:33 +0000 | |
commit | 545fc81bbdde07d72c1747d2d9d3026d55d50bb2 (patch) | |
tree | c48ac212bc20f02ddfaf9b81478b998c0f30e5cf | |
parent | Bug 340609: ValidateBugId() should throw an error if no bug ID is passed - Pa... (diff) | |
download | bugzilla-545fc81bbdde07d72c1747d2d9d3026d55d50bb2.tar.gz bugzilla-545fc81bbdde07d72c1747d2d9d3026d55d50bb2.tar.bz2 bugzilla-545fc81bbdde07d72c1747d2d9d3026d55d50bb2.zip |
Bug 460749: Firefox 3.1 no longer supports -moz-pre-wrap (nor does Opera!) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=pyrzak a=LpSolit
-rw-r--r-- | template/en/default/attachment/diff-header.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/attachment/diff-header.html.tmpl b/template/en/default/attachment/diff-header.html.tmpl index 97a6d0527..8c70af324 100644 --- a/template/en/default/attachment/diff-header.html.tmpl +++ b/template/en/default/attachment/diff-header.html.tmpl @@ -75,7 +75,9 @@ tbody.file td { tbody.file pre { display: inline; - white-space: -moz-pre-wrap; + white-space: pre-wrap; /* CSS 3 & CSS 2.1 */ + white-space: -moz-pre-wrap; /* Gecko < 1.9.1 */ + white-space: -o-pre-wrap; /* Opera 7 */ font-size: 0.9em; } |