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

Side by Side Diff: LayoutTests/fast/regions/region-overflow-auto-overflow-hidden.html

Issue 16690004: [CSS Regions] Rename region-overflow to region-fragment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 years, 6 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
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 body { 5 body {
6 font-family: monospace; 6 font-family: monospace;
7 } 7 }
8 8
9 #article { 9 #article {
10 -webkit-flow-into: article; 10 -webkit-flow-into: article;
11 } 11 }
12 12
13 #region_1, #region_2 { 13 #region_1, #region_2 {
14 -webkit-flow-from: article; 14 -webkit-flow-from: article;
15 -webkit-region-overflow: auto; 15 -webkit-region-fragment: auto;
16 overflow: hidden; 16 overflow: hidden;
17 display: inline-block; 17 display: inline-block;
18 vertical-align: top; 18 vertical-align: top;
19 margin: 2px; 19 margin: 2px;
20 } 20 }
21 21
22 #region_1 { 22 #region_1 {
23 height: 400px; 23 height: 400px;
24 width: 400px; 24 width: 400px;
25 border: 1px solid #a0a0a0; 25 border: 1px solid #a0a0a0;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 This is some content This is some content 66 This is some content This is some content
67 This is some content. 67 This is some content.
68 </span> 68 </span>
69 </div> 69 </div>
70 </div> 70 </div>
71 71
72 <div id="region_1"></div> 72 <div id="region_1"></div>
73 <div id="region_2"></div> 73 <div id="region_2"></div>
74 </body> 74 </body>
75 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698