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

Side by Side Diff: LayoutTests/css3/flexbox/percentage-sizes-quirks.html

Issue 478233004: Flexbox flex: 1 incorrectly sets flex-basis to 0px (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 <style> 1 <style>
2 .flexbox { 2 .flexbox {
3 display: -webkit-flex; 3 display: -webkit-flex;
4 } 4 }
5 .column { 5 .column {
6 height: 50px; 6 height: 50px;
7 } 7 }
8 .row { 8 .row {
9 width: 50px; 9 width: 50px;
10 } 10 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 </div> 55 </div>
56 56
57 <div class="container row"> 57 <div class="container row">
58 <div class="flexbox"> 58 <div class="flexbox">
59 <div style="-webkit-flex: 0 0 50%" data-expected-width=25></div> 59 <div style="-webkit-flex: 0 0 50%" data-expected-width=25></div>
60 </div> 60 </div>
61 </div> 61 </div>
62 62
63 <div class="container column"> 63 <div class="container column">
64 <div class="flexbox"> 64 <div class="flexbox">
65 <div style="-webkit-flex: 0 0 50%" data-expected-height=25></div> 65 <div style="-webkit-flex: 0 0 50%" data-expected-height=0></div>
66 </div> 66 </div>
67 </div> 67 </div>
68 68
69 </body> 69 </body>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flex-property-parsing-expected.txt ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698