Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: LayoutTests/fast/text-autosizing/positioned-out-of-flow-expected.html

Issue 16019004: Text Autosizing: Treat position:absolute/fixed as constrained height. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/text-autosizing/positioned-out-of-flow-expected.html
diff --git a/LayoutTests/fast/text-autosizing/positioned-out-of-flow-expected.html b/LayoutTests/fast/text-autosizing/positioned-out-of-flow-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..c146ee9fdf513953141b91d7820ddcb5672e3d7e
--- /dev/null
+++ b/LayoutTests/fast/text-autosizing/positioned-out-of-flow-expected.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+<head>
+
+<meta name="viewport" content="width=800">
+<style>
+html { font-size: 16px; }
+body { width: 800px; margin: 0; overflow-y: hidden; }
+</style>
+
+</head>
+<body>
+
+<div style="position: fixed; top: 0; left: 0; right: 0">
+ This text should not be autosized (its computed font size should remain 16px), since the position:fixed causes it to be considered to have constrained height.<br>
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ <div style="float: left; width: 100%; font-size: 2.5rem">
+ This text should be autosized to 40px computed font size, since it is within a float:left, so constrained height is no longer a concern.<br>
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.
+ </div>
+</div>
+
+<div style="position: absolute; bottom: 0; left: 0; right: 0">
+ This text should not be autosized (its computed font size should remain 16px), since the position:absolute causes it to be considered to have constrained height.<br>
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ <div style="overflow: auto; font-size: 2.5rem">
+ This text should be autosized to 40px computed font size, since it is within an overflow:auto, so constrained height is no longer a concern.<br>
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.
+ </div>
+</div>
+
+</body>
+</html>
« no previous file with comments | « LayoutTests/fast/text-autosizing/positioned-out-of-flow.html ('k') | Source/core/rendering/TextAutosizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698