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

Side by Side Diff: LayoutTests/fast/regions/auto-size/autosize-region-container-resize-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 html {
6 font: 16px/1.25 monospace;
7 }
8
9 #regionContainer {
10 width: 600px;
11 }
12
13 #region {
14 width: auto;
15 height: auto;
16 border: 5px solid green;
17 }
18
19 #region2 {
20 width: 300px;
21 height: 40px;
22 border: 5px solid blue;
23 position: absolute;
24 top: 150px;
25 }
26 </style>
27 </head>
28 <body>
29 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=102221">WebKit Bug 102221</a> [CSS Regions] Auto-sized regions don't recompute their dimensions on window resize</p>
30 <p>On success you should not see any text in the blue border region.</p>
31 <div id="regionContainer">
32 <div id="region">Lorem ipsum dolor sin amet Lorem ipsum dolor sin amet</ div>
33 </div>
34 <div id="region2"></div>
35 <script>
36 document.body.offsetTop;
37 document.getElementById("regionContainer").style.width = "310px";
38 </script>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698