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

Side by Side Diff: LayoutTests/fast/regions/dialog-autoheight-expected.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 .flowContent { -webkit-font-smoothing: none; font-size: 50px; color: green; font-family: Ahem; }
6
7 .regionSize { margin: 0; padding: 0; width: 260px; border: none; }
8 #region { margin-left: 8px; top: 150px; }
9 #region2 { top: 150px; left: 300px; }
10 #region3 { top: 150px; left: 600px; }
11
12 .redBox { position: absolute; height: 50px; background-color: red; }
13 #red { top: 200px; }
14 #red1 { top: 200px; left: 600px; }
15 #red2 { top: 200px; left: 300px; }
16 </style>
17 </head>
18 <body>
19 <p>The three regions in the region chain all have auto-height. Their hei ght is computed taking regions breaks into account.</p>
20 <p>On success, you should see 3 horizontal green lines.</p>
21 <div id="red" class="redBox regionSize"></div>
22 <div id="red1" class="redBox regionSize"></div>
23 <div id="red2" class="redBox regionSize"></div>
24
25 <dialog open id="region" class="regionSize">
26 <p class="flowContent">aaaaa</p>
27 </dialog>
28 <dialog open id="region2" class="regionSize">
29 <p class="flowContent">aaaaa</p>
30 </dialog>
31 <dialog open id="region3" class="regionSize">
32 <p class="flowContent">aaaaa</p>
33 </dialog>
34 </body>
35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/dialog-autoheight.html ('k') | LayoutTests/fast/regions/dialog-autosize.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698