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

Side by Side Diff: LayoutTests/css3/flexbox/nested-orthogonal-flexbox-relayout-expected.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 #column { 3 #column {
4 display: -webkit-flex; 4 display: flex;
5 flex-direction: column; 5 flex-direction: column;
6 border: 5px solid yellow; 6 border: 5px solid yellow;
7 width: 200px; 7 width: 200px;
8 } 8 }
9 9
10 #row { 10 #row {
11 display: -webkit-flex; 11 display: flex;
12 flex-direction: row; 12 flex-direction: row;
13 border: 5px solid blue; 13 border: 5px solid blue;
14 } 14 }
15 15
16 .item { 16 .item {
17 border: 5px solid green; 17 border: 5px solid green;
18 } 18 }
19 </style> 19 </style>
20 <body> 20 <body>
21 <div id="column"> 21 <div id="column">
22 <div id="row"> 22 <div id="row">
23 <div class="item">This text should not overflow its box</div> 23 <div class="item">This text should not overflow its box</div>
24 </div> 24 </div>
25 </div> 25 </div>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/nested-orthogonal-flexbox-relayout.html ('k') | LayoutTests/css3/flexbox/nested-stretch.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698