зеркало из https://github.com/mozilla/pjs.git
Bug 705446: Disable font inflation for preformatted text. [r=dbaron]
This commit is contained in:
Родитель
4fbe013a67
Коммит
5be9b0763a
|
@ -4734,9 +4734,13 @@ ShouldInflateFontsForContainer(const nsIFrame *aFrame)
|
||||||
// indicates whether the frame is inside something with a constrained
|
// indicates whether the frame is inside something with a constrained
|
||||||
// height (propagating down the tree), but the propagation stops when
|
// height (propagating down the tree), but the propagation stops when
|
||||||
// we hit overflow-y: scroll or auto.
|
// we hit overflow-y: scroll or auto.
|
||||||
return aFrame->GetStyleText()->mTextSizeAdjust !=
|
const nsStyleText* styleText = aFrame->GetStyleText();
|
||||||
NS_STYLE_TEXT_SIZE_ADJUST_NONE &&
|
|
||||||
!(aFrame->GetStateBits() & NS_FRAME_IN_CONSTRAINED_HEIGHT);
|
return styleText->mTextSizeAdjust != NS_STYLE_TEXT_SIZE_ADJUST_NONE &&
|
||||||
|
!(aFrame->GetStateBits() & NS_FRAME_IN_CONSTRAINED_HEIGHT) &&
|
||||||
|
// We also want to disable font inflation for containers that have
|
||||||
|
// preformatted text.
|
||||||
|
styleText->WhiteSpaceCanWrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
nscoord
|
nscoord
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This text is in a preformatted block, and should therefore not be inflated with the fix for bug 705446.
|
||||||
|
-->
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
pre { font-size: 12px; line-height: 1.0;}
|
||||||
|
</style>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
<div class="line" id="line1"><span style="color: red">Firefox</span> is quite neat</div>
|
||||||
|
<div class="line" id="line2">It browses the web fluidly</div>
|
||||||
|
<div class="line" id="line3">With no cares at all</div>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</head>
|
||||||
|
</html>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This text is in a preformatted block, and should therefore not be inflated with the fix for bug 705446.
|
||||||
|
-->
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
pre { font-size: 12px; line-height: 1.0;}
|
||||||
|
</style>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
<div class="line" id="line1"><span style="color: red">Firefox</span> is quite neat</div>
|
||||||
|
<div class="line" id="line2">It browses the web fluidly</div>
|
||||||
|
<div class="line" id="line3">With no cares at all</div>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</head>
|
||||||
|
</html>
|
|
@ -65,6 +65,7 @@ var gTests = [
|
||||||
"== disable-fontinfl-on-mobile-2.html disable-fontinfl-on-mobile-ref.html",
|
"== disable-fontinfl-on-mobile-2.html disable-fontinfl-on-mobile-ref.html",
|
||||||
"== disable-fontinfl-on-mobile-3.html disable-fontinfl-on-mobile-ref.html",
|
"== disable-fontinfl-on-mobile-3.html disable-fontinfl-on-mobile-ref.html",
|
||||||
"== disable-fontinfl-on-mobile-4.html disable-fontinfl-on-mobile-ref.html",
|
"== disable-fontinfl-on-mobile-4.html disable-fontinfl-on-mobile-ref.html",
|
||||||
|
"== preformatted-text.html preformatted-text-ref.html",
|
||||||
];
|
];
|
||||||
|
|
||||||
// Maintain a reference count of how many things we're waiting for until
|
// Maintain a reference count of how many things we're waiting for until
|
||||||
|
|
Загрузка…
Ссылка в новой задаче