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

Side by Side Diff: LayoutTests/css3/flexbox/perpendicular-writing-modes-inside-flex-item.html

Issue 1088633002: Unprefix flexbox tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: whoops, a > went missing 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .flexbox { 3 .flexbox {
4 display: -webkit-flex; 4 display: flex;
5 -webkit-flex-direction: column; 5 flex-direction: column;
6 height: 300px; 6 height: 300px;
7 width: 200px; 7 width: 200px;
8 padding: 3px; 8 padding: 3px;
9 border: 4px solid black; 9 border: 4px solid black;
10 } 10 }
11 .flexitem { 11 .flexitem {
12 -webkit-flex: 1; 12 flex: 1;
13 padding: 3px; 13 padding: 3px;
14 border: 4px solid cyan; 14 border: 4px solid cyan;
15 min-height: 0; 15 min-height: 0;
16 } 16 }
17 .vertical { 17 .vertical {
18 position: relative; 18 position: relative;
19 -webkit-writing-mode: vertical-lr; 19 -webkit-writing-mode: vertical-lr;
20 padding: 3px; 20 padding: 3px;
21 border: 4px solid blue; 21 border: 4px solid blue;
22 } 22 }
(...skipping 10 matching lines...) Expand all
33 <body onload="checkLayout('.flexbox')"> 33 <body onload="checkLayout('.flexbox')">
34 <div class="flexbox"> 34 <div class="flexbox">
35 <div class="flexitem" data-expected-width=200 data-expected-height=300> 35 <div class="flexitem" data-expected-width=200 data-expected-height=300>
36 <div class="vertical" data-expected-height=286> 36 <div class="vertical" data-expected-height=286>
37 <div class="inlineContent" data-expected-y=3 data-expected-x=3>< /div> 37 <div class="inlineContent" data-expected-y=3 data-expected-x=3>< /div>
38 <div class="inlineContent" data-expected-y=3></div> 38 <div class="inlineContent" data-expected-y=3></div>
39 </div> 39 </div>
40 </div> 40 </div>
41 </div> 41 </div>
42 </body> 42 </body>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/percentage-sizes-quirks.html ('k') | LayoutTests/css3/flexbox/position-absolute-child.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698