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

Side by Side Diff: LayoutTests/css3/flexbox/orthogonal-writing-modes-and-intrinsic-sizing.html

Issue 1052363002: Fix a FIXME - correctly calculate the main size when writing modes are involved. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test should be fixed now Created 5 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/orthogonal-writing-modes-and-intrinsic-sizing-expected.txt » ('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 <html>
3 <link href="resources/flexbox.css" rel="stylesheet">
4 <script src="../../resources/check-layout.js"></script>
5
6 <style>
7 .flexbox {
8 background-color: gray;
9 }
10
11 .vertical {
12 -webkit-writing-mode: vertical-lr;
13 writing-mode: vertical-lr;
14 width: -webkit-min-content;
15 background-color: blue;
16 }
17 </style>
18 <body onload="checkLayout('.flexbox')">
19
20 <div class="flexbox" data-expected-height="20">
21 <div class="vertical" data-expected-width="50" data-expected-height="20">
22 <div style="width: 50px; height: 20px; background-color: blue;" data-exp ected-width="50" data-expected-height="20"></div>
23 </div>
24 </div>
25
26
27 <div class="flexbox column" data-expected-height="20">
28 <div class="vertical" data-expected-width="50" data-expected-height="20">
29 <div style="width: 50px; height: 20px; background-color: blue;" data-exp ected-width="50" data-expected-height="20"></div>
30 </div>
31 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/orthogonal-writing-modes-and-intrinsic-sizing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698