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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item.html

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 years, 1 month 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 src="../../resources/check-layout.js"></script> 3 <script src="../../resources/check-layout.js"></script>
4 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
5 <style> 5 <style>
6 .grid { 6 .grid {
7 padding: 10px; 7 padding: 10px;
8 border-top: 10px dotted blue; 8 border-top: 10px dotted blue;
9 border-right: 20px dotted blue; 9 border-right: 20px dotted blue;
10 border-bottom: 30px dotted blue; 10 border-bottom: 30px dotted blue;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 <div style="position: relative"> 45 <div style="position: relative">
46 <div class="grid verticalLR" data-expected-width="280" data-expected-height= "260"> 46 <div class="grid verticalLR" data-expected-width="280" data-expected-height= "260">
47 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 20" data-expected-width="20" data-expected-height="40"></div> 47 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 20" data-expected-width="20" data-expected-height="40"></div>
48 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "120" data-expected-width="20" data-expected-height="40"></div> 48 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "120" data-expected-width="20" data-expected-height="40"></div>
49 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div> 49 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div>
50 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div> 50 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div>
51 </div> 51 </div>
52 </div> 52 </div>
53 53
54 <div style="position: relative">
55 <div class="grid horizontalBT" data-expected-width="280" data-expected-heigh t="260">
56 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div>
57 <div class="item firstRowSecondColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
58 <div class="item secondRowFirstColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div>
59 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
60 </div>
61 </div>
62
63 <!-- rtl direction --> 54 <!-- rtl direction -->
64 <div style="position: relative"> 55 <div style="position: relative">
65 <div class="grid directionRTL" data-expected-width="280" data-expected-heigh t="260"> 56 <div class="grid directionRTL" data-expected-width="280" data-expected-heigh t="260">
66 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "20" data-expected-width="20" data-expected-height="40"></div> 57 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "20" data-expected-width="20" data-expected-height="40"></div>
67 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div> 58 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div>
68 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="120" data-expected-width="20" data-expected-height="40"></div> 59 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="120" data-expected-width="20" data-expected-height="40"></div>
69 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div> 60 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div>
70 </div> 61 </div>
71 </div> 62 </div>
72 63
73 <div style="position: relative"> 64 <div style="position: relative">
74 <div class="grid verticalRL directionRTL" data-expected-width="280" data-exp ected-height="260"> 65 <div class="grid verticalRL directionRTL" data-expected-width="280" data-exp ected-height="260">
75 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div> 66 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div>
76 <div class="item firstRowSecondColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div> 67 <div class="item firstRowSecondColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div>
77 <div class="item secondRowFirstColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div> 68 <div class="item secondRowFirstColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
78 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div> 69 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
79 </div> 70 </div>
80 </div> 71 </div>
81 72
82 <div style="position: relative"> 73 <div style="position: relative">
83 <div class="grid verticalLR directionRTL" data-expected-width="280" data-exp ected-height="260"> 74 <div class="grid verticalLR directionRTL" data-expected-width="280" data-exp ected-height="260">
84 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div> 75 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div>
85 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div> 76 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div>
86 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div> 77 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
87 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div> 78 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
88 </div> 79 </div>
89 </div> 80 </div>
90 81
91 <div style="position: relative">
92 <div class="grid horizontalBT directionRTL" data-expected-width="280" data-e xpected-height="260">
93 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div>
94 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
95 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div>
96 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
97 </div>
98 </div>
99
100 </body> 82 </body>
101 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698