diff --git a/browser/themes/gnomestripe/browser/pageInfo.css b/browser/themes/gnomestripe/browser/pageInfo.css index fcf5081e3f5..8bfd5e256a8 100644 --- a/browser/themes/gnomestripe/browser/pageInfo.css +++ b/browser/themes/gnomestripe/browser/pageInfo.css @@ -150,7 +150,7 @@ groupbox.treebox .groupbox-body { } #general-security-identity { - white-space: -moz-pre-wrap; + white-space: pre-wrap; line-height: 2em; } diff --git a/browser/themes/pinstripe/browser/pageInfo.css b/browser/themes/pinstripe/browser/pageInfo.css index a5510364c40..e0c854796c4 100644 --- a/browser/themes/pinstripe/browser/pageInfo.css +++ b/browser/themes/pinstripe/browser/pageInfo.css @@ -147,7 +147,7 @@ groupbox.treebox .groupbox-body { } #general-security-identity { - white-space: -moz-pre-wrap; + white-space: pre-wrap; line-height: 2em; } diff --git a/browser/themes/winstripe/browser/pageInfo.css b/browser/themes/winstripe/browser/pageInfo.css index dc59f8ebb89..b16f321e1e8 100644 --- a/browser/themes/winstripe/browser/pageInfo.css +++ b/browser/themes/winstripe/browser/pageInfo.css @@ -168,7 +168,7 @@ groupbox.treebox .groupbox-body { } #general-security-identity { - white-space: -moz-pre-wrap; + white-space: pre-wrap; line-height: 2em; } diff --git a/calendar/lightning/themes/pinstripe/imip.css b/calendar/lightning/themes/pinstripe/imip.css index 3089455cdc1..024bf298163 100644 --- a/calendar/lightning/themes/pinstripe/imip.css +++ b/calendar/lightning/themes/pinstripe/imip.css @@ -60,7 +60,7 @@ td.content { background-color: white; } td.content p { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } p.header { color: white; diff --git a/calendar/lightning/themes/pinstripe/lightning.css b/calendar/lightning/themes/pinstripe/lightning.css index a0f9c671871..e11a7f63e97 100644 --- a/calendar/lightning/themes/pinstripe/lightning.css +++ b/calendar/lightning/themes/pinstripe/lightning.css @@ -288,7 +288,7 @@ separator.tooltipBodySeparator { description.tooltipBody { font-weight: normal; - white-space: -moz-pre-wrap; + white-space: pre-wrap; margin: 0pt; } diff --git a/calendar/lightning/themes/winstripe/imip.css b/calendar/lightning/themes/winstripe/imip.css index e35d5b991c4..ed277cbbe7b 100644 --- a/calendar/lightning/themes/winstripe/imip.css +++ b/calendar/lightning/themes/winstripe/imip.css @@ -61,7 +61,7 @@ td.content { background-color: white; } td.content p { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } p.header { color: white; diff --git a/calendar/lightning/themes/winstripe/lightning.css b/calendar/lightning/themes/winstripe/lightning.css index 4673351c75d..d3157756afb 100644 --- a/calendar/lightning/themes/winstripe/lightning.css +++ b/calendar/lightning/themes/winstripe/lightning.css @@ -289,7 +289,7 @@ separator.tooltipBodySeparator { description.tooltipBody { font-weight: normal; - white-space: -moz-pre-wrap; + white-space: pre-wrap; margin: 0pt; } diff --git a/calendar/sunbird/themes/pinstripe/sunbird/calendar.css b/calendar/sunbird/themes/pinstripe/sunbird/calendar.css index 857eeac559c..ccc13d3ac47 100644 --- a/calendar/sunbird/themes/pinstripe/sunbird/calendar.css +++ b/calendar/sunbird/themes/pinstripe/sunbird/calendar.css @@ -125,7 +125,7 @@ separator.tooltipBodySeparator { description.tooltipBody { font-weight: normal; - white-space: -moz-pre-wrap; + white-space: pre-wrap; margin: 0px; } diff --git a/calendar/sunbird/themes/winstripe/sunbird/calendar.css b/calendar/sunbird/themes/winstripe/sunbird/calendar.css index a26c593967c..245c245751b 100644 --- a/calendar/sunbird/themes/winstripe/sunbird/calendar.css +++ b/calendar/sunbird/themes/winstripe/sunbird/calendar.css @@ -115,7 +115,7 @@ separator.tooltipBodySeparator { description.tooltipBody { font-weight: normal; - white-space: -moz-pre-wrap; + white-space: pre-wrap; margin: 0px; } diff --git a/content/base/src/nsPlainTextSerializer.cpp b/content/base/src/nsPlainTextSerializer.cpp index 98dfc7aeab3..ab5b5dd9319 100644 --- a/content/base/src/nsPlainTextSerializer.cpp +++ b/content/base/src/nsPlainTextSerializer.cpp @@ -597,7 +597,7 @@ nsPlainTextSerializer::DoOpenContainer(const nsIParserNode* aNode, PRInt32 aTag) // Try to figure out here whether we have a // preformatted style attribute. // - // Trigger on the presence of a "-moz-pre-wrap" in the + // Trigger on the presence of a "pre-wrap" in the // style attribute. That's a very simplistic way to do // it, but better than nothing. // Also set mWrapColumn to the value given there diff --git a/extensions/irc/xul/content/output-base.css b/extensions/irc/xul/content/output-base.css index 31fab3f674e..5b8728d88c2 100644 --- a/extensions/irc/xul/content/output-base.css +++ b/extensions/irc/xul/content/output-base.css @@ -502,7 +502,7 @@ a.chatzilla-link:hover { .msg-data { /* .msg-data = the text portion */ padding: 1px 1px 1px 3px; /* of a message */ width: 100%; - white-space: -moz-pre-wrap; + white-space: pre-wrap; } diff --git a/extensions/venkman/resources/content/venkman-output-base.css b/extensions/venkman/resources/content/venkman-output-base.css index 0d0a00ed5e2..717f1a048f6 100644 --- a/extensions/venkman/resources/content/venkman-output-base.css +++ b/extensions/venkman/resources/content/venkman-output-base.css @@ -54,7 +54,7 @@ a.venkman-link:hover { .msg { /* .msg = a single message in the */ width: 100%; /* output window */ font: 11pt lucida, sans-serif; - white-space: -moz-pre-wrap; + white-space: pre-wrap; } .msg[monospace] { diff --git a/layout/generic/crashtests/387058-1.html b/layout/generic/crashtests/387058-1.html index 1373867eb54..5a3eebcaa5c 100644 --- a/layout/generic/crashtests/387058-1.html +++ b/layout/generic/crashtests/387058-1.html @@ -8,7 +8,7 @@ function boom() -
+
x x x x x x x x x x x x
diff --git a/layout/generic/crashtests/387058-2.html b/layout/generic/crashtests/387058-2.html index d05b81859aa..eb5087aed4c 100644 --- a/layout/generic/crashtests/387058-2.html +++ b/layout/generic/crashtests/387058-2.html @@ -9,7 +9,7 @@ function boom() -
+
x
diff --git a/layout/html/tests/block/interactive/154924.html b/layout/html/tests/block/interactive/154924.html index 51433344edc..47d5dabbd9d 100644 --- a/layout/html/tests/block/interactive/154924.html +++ b/layout/html/tests/block/interactive/154924.html @@ -3,7 +3,7 @@ foobar - + make the window narrower until "height" wraps to the next line
iframe name=selector2 src=http://www.mozilla.org/ width=100% height=100% diff --git a/layout/reftests/bugs/403455-1-ref.html b/layout/reftests/bugs/403455-1-ref.html index 7ee92d2a8a3..bac7791f87d 100644 --- a/layout/reftests/bugs/403455-1-ref.html +++ b/layout/reftests/bugs/403455-1-ref.html @@ -6,7 +6,7 @@ a { color:pink; } -

mmmmmmmmmm
m
mmmmmmmmm

+

mmmmmmmmmm
m
mmmmmmmmm

m
mmmmmmmmmmmmmmmmmmm

diff --git a/layout/reftests/bugs/403455-1.html b/layout/reftests/bugs/403455-1.html index 96d003958b3..6713d53496e 100644 --- a/layout/reftests/bugs/403455-1.html +++ b/layout/reftests/bugs/403455-1.html @@ -7,7 +7,7 @@ a { color:pink; } -

mmmmmmmmmm mmmmmmmmmm

+

mmmmmmmmmm mmmmmmmmmm

m mmmmmmmmmmmmmmmmmmm

diff --git a/layout/reftests/bugs/411792-1.html b/layout/reftests/bugs/411792-1.html index db9612d85a9..a14fe491f00 100644 --- a/layout/reftests/bugs/411792-1.html +++ b/layout/reftests/bugs/411792-1.html @@ -1,7 +1,7 @@ -
One +
One Two Three
diff --git a/layout/reftests/text/white-space-1a.html b/layout/reftests/text/white-space-1a.html index 4271011fd27..90cec9ddd40 100644 --- a/layout/reftests/text/white-space-1a.html +++ b/layout/reftests/text/white-space-1a.html @@ -5,7 +5,7 @@ diff --git a/layout/style/quirk.css b/layout/style/quirk.css index 1435457f8e4..d35d810b887 100644 --- a/layout/style/quirk.css +++ b/layout/style/quirk.css @@ -209,7 +209,7 @@ td > ol:-moz-only-whitespace:-moz-last-node, th > ol:-moz-only-whitespace:-moz-l /* Quirk: support the ways of making PRE have wrapping */ pre[wrap], pre[cols], pre[width] { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } diff --git a/layout/style/viewsource.css b/layout/style/viewsource.css index 49d1a8595a5..fb78cccd4ff 100644 --- a/layout/style/viewsource.css +++ b/layout/style/viewsource.css @@ -48,7 +48,7 @@ white-space: pre; } #viewsource.wrap { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } pre { font: inherit; diff --git a/mail/components/addrbook/content/addressbook.xul b/mail/components/addrbook/content/addressbook.xul index a266c88f53b..9d7e8dc8da0 100644 --- a/mail/components/addrbook/content/addressbook.xul +++ b/mail/components/addrbook/content/addressbook.xul @@ -745,7 +745,7 @@ - + diff --git a/mail/themes/pinstripe/mail/messageBody.css b/mail/themes/pinstripe/mail/messageBody.css index 46294f037df..ccbe6853344 100644 --- a/mail/themes/pinstripe/mail/messageBody.css +++ b/mail/themes/pinstripe/mail/messageBody.css @@ -76,7 +76,7 @@ blockquote { } .moz-text-plain[wrap="true"] { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } .moz-text-plain[wrap="false"] { @@ -84,7 +84,7 @@ blockquote { } .moz-text-plain[wrap="flow"] .moz-txt-sig { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } .moz-text-plain[graphical-quote="false"] blockquote { diff --git a/mail/themes/qute/mail/messageBody.css b/mail/themes/qute/mail/messageBody.css index 55ed4d3eb4a..d73fef91580 100644 --- a/mail/themes/qute/mail/messageBody.css +++ b/mail/themes/qute/mail/messageBody.css @@ -78,7 +78,7 @@ div.headerdisplayname { } .moz-text-plain[wrap="true"] { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } .moz-text-plain[wrap="false"] { @@ -86,7 +86,7 @@ div.headerdisplayname { } .moz-text-plain[wrap="flow"] .moz-txt-sig { - white-space: -moz-pre-wrap; + white-space: pre-wrap; } .moz-text-plain[graphical-quote="false"] blockquote { diff --git a/mailnews/addrbook/resources/content/abCardViewOverlay.xul b/mailnews/addrbook/resources/content/abCardViewOverlay.xul index bb06045704b..43a998ce193 100644 --- a/mailnews/addrbook/resources/content/abCardViewOverlay.xul +++ b/mailnews/addrbook/resources/content/abCardViewOverlay.xul @@ -103,7 +103,7 @@ - + diff --git a/parser/htmlparser/tests/outsinks/entityxif.xif b/parser/htmlparser/tests/outsinks/entityxif.xif index d3564c464d0..1c127e208f6 100644 --- a/parser/htmlparser/tests/outsinks/entityxif.xif +++ b/parser/htmlparser/tests/outsinks/entityxif.xif @@ -49,7 +49,7 @@ - + http://www.hotbot.com/?MT=Search+Engines diff --git a/parser/htmlparser/tests/outsinks/plain.html b/parser/htmlparser/tests/outsinks/plain.html index 0cb4a13f433..c8127a35af6 100644 --- a/parser/htmlparser/tests/outsinks/plain.html +++ b/parser/htmlparser/tests/outsinks/plain.html @@ -35,7 +35,7 @@ - ***** END LICENSE BLOCK ***** --> Ender Plain Text Test Page - + 80 char width (for reference only): ---------|---------|---------|---------|---------|---------|---------|---------| diff --git a/parser/htmlparser/tests/outsinks/plainwrap.html b/parser/htmlparser/tests/outsinks/plainwrap.html index 9a949fad50e..72879b810e9 100644 --- a/parser/htmlparser/tests/outsinks/plainwrap.html +++ b/parser/htmlparser/tests/outsinks/plainwrap.html @@ -38,7 +38,7 @@ Ender Plain Text Test Page - + 80 char width (for reference only) ---------|---------|---------|---------|---------|---------|---------|---------| diff --git a/security/manager/pki/resources/content/exceptionDialog.xul b/security/manager/pki/resources/content/exceptionDialog.xul index f8c1c0d7a7b..285461dc7b9 100644 --- a/security/manager/pki/resources/content/exceptionDialog.xul +++ b/security/manager/pki/resources/content/exceptionDialog.xul @@ -69,9 +69,9 @@ + style="white-space: pre-wrap"/> &exceptionMgr.supplementalWarning; @@ -92,7 +92,7 @@ -