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()
-mmmmmmmmmm
mmmmmmmmmm
mmmmmmmmmm
mmmmmmmmmm
m
mmmmmmmmmmmmmmmmmmm
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 @@ -