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

Side by Side Diff: LayoutTests/fast/css-grid-layout/floating-not-effect-on-grid-items.html

Issue 273893002: New Layout Test to verify 'float' and 'clear' don't affect grid's items. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No need to test float/clear without grid. Created 6 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 | LayoutTests/fast/css-grid-layout/floating-not-effect-on-grid-items-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/grid.css" rel="stylesheet">
4 <script src="../../resources/check-layout.js"></script>
5 <style>
6 .container {
7 background-color:grey;
8 }
9
10 .gridItem {
11 width: 50px;
12 height: 50px;
13 }
14 </style>
15 <body onload="checkLayout('.container')">
16
17 <p>This test checks that the grid's items are not affected by the 'float' and 'c lear' properties.</p>
18
19 <div style="position: relative">
20 <div class="container grid">
21 <div style="float: right;" class="gridItem firstRowFirstColumn" data-off set-x="0" data-offset-y="0" data-expected-width="50" data-expected-height="50">< /div>
22 <div class="gridItem firstRowFirstColumn" data-offset-x="0" data-offset- y="0" data-expected-width="50" data-expected-height="50"></div>
23 <div style="float: left;" class="gridItem firstRowSecondColumn" data-off set-x="50" data-offset-y="0" data-expected-width="50" data-expected-height="50"> </div>
24 <div style="float: left;" class="gridItem secondRowFirstColumn" data-off set-x="0" data-offset-y="50" data-expected-width="50" data-expected-height="50"> </div>
25 <div style="clear: both;" class="gridItem secondRowFirstColumn" data-off set-x="0" data-offset-y="50" data-expected-width="50" data-expected-height="50"> </div>
26 <div style="float: left;" class="gridItem secondRowSecondColumn" data-of fset-x="50" data-offset-y="50" data-expected-width="50" data-expected-height="50 "></div>
27 </div>
28 </div>
29
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/floating-not-effect-on-grid-items-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698