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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/bug604346.html

Issue 1943633002: [css-flexbox] Add test case for definite widths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test case only Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/flexbox/bug604346-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 .fixed-pos{
5 position: fixed;
6 background: red;
7 }
8
9 .inner {
10 width: 100%;
11 background: green;
12 }
13
14 .flexbox {
15 display: flex;
16 }
17
18 .column {
19 flex-direction: column;
20 }
21 </style>
22
23 <p>You should see no red.</p>
24
25 <div class="fixed-pos" >
26 <div class="flexbox column">
27
28 <div class="flexbox">
29 <div class="inner">
30 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
31 </div>
32 </div>
33
34 <div class="flexbox">
35 <div class="inner">
36 YYYY
37 </div>
38 </div>
39
40 </div>
41 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/flexbox/bug604346-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698