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

Side by Side Diff: LayoutTests/fast/regions/auto-size/autoheight-region-new-minheight.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 #content { -webkit-flow-into: flow; font: 50px/1 Ahem; }
6 #region { -webkit-flow-from: flow; width: 100px; position: absolute; top: 200px; }
7 .regionMinHeight { min-height: 200px; }
8 </style>
9 </head>
10 <script src="../../../resources/check-layout.js"></script>
11 <body onload="checkLayout('#region')">
12 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103738"> [C SS Regions] min-max height will not trigger a relayout when set on a region with auto-height</a>.</p>
13 <p>On success you should see PASS below.</p>
14 <div id="content">
15 <span>a a</span>
16 </div>
17 <div id="region" data-expected-height=200></div>
18 <script>
19 document.body.offsetTop; // force layout
20 document.getElementById("region").className = "regionMinHeight";
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698