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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-element-padding-margin.html

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); 5 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
6 </script> 6 </script>
7 <link href="resources/grid.css" rel="stylesheet"> 7 <link href="resources/grid.css" rel="stylesheet">
8 <style> 8 <style>
9 .grid { 9 .grid {
10 grid-definition-columns: 100px; 10 grid-template-columns: 100px;
11 grid-definition-rows: 50px; 11 grid-template-rows: 50px;
12 /* Force the grid element to be shrink-to-fit. */ 12 /* Force the grid element to be shrink-to-fit. */
13 position: absolute; 13 position: absolute;
14 } 14 }
15 15
16 .padding { 16 .padding {
17 padding: 20px 10px 30px 50px; 17 padding: 20px 10px 30px 50px;
18 } 18 }
19 19
20 .border { 20 .border {
21 border-style: solid; 21 border-style: solid;
22 border-color: green; 22 border-color: green;
23 border-width: 10px 20px 30px 40px; 23 border-width: 10px 20px 30px 40px;
24 } 24 }
25 </style> 25 </style>
26 <script src="../../resources/check-layout.js"></script> 26 <script src="../../resources/check-layout.js"></script>
27 <body onload="checkLayout('.grid')"> 27 <body onload="checkLayout('.grid')">
28 28
29 <p>Test that paddings and borders are added to a grid element's size.</p> 29 <p>Test that paddings and borders are added to a grid element's size.</p>
30 30
31 <div class="grid padding" data-expected-height="100" data-expected-width="160">< /div> 31 <div class="grid padding" data-expected-height="100" data-expected-width="160">< /div>
32 <div class="grid padding verticalRL" data-expected-height="150" data-expected-wi dth="110"></div> 32 <div class="grid padding verticalRL" data-expected-height="150" data-expected-wi dth="110"></div>
33 <div class="grid border" data-expected-height="90" data-expected-width="160"></d iv> 33 <div class="grid border" data-expected-height="90" data-expected-width="160"></d iv>
34 <div class="grid border verticalRL" data-expected-height="140" data-expected-wid th="110"></div> 34 <div class="grid border verticalRL" data-expected-height="140" data-expected-wid th="110"></div>
35 <div class="grid border padding" data-expected-height="140" data-expected-width= "220"></div> 35 <div class="grid border padding" data-expected-height="140" data-expected-width= "220"></div>
36 <div class="grid border padding verticalRL" data-expected-height="190" data-expe cted-width="170"></div> 36 <div class="grid border padding verticalRL" data-expected-height="190" data-expe cted-width="170"></div>
37 37
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698