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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-border-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 border-top: 20px dotted blue; 7 border-top: 20px dotted blue;
8 border-right: 30px dotted blue; 8 border-right: 30px dotted blue;
9 border-bottom: 40px dotted blue; 9 border-bottom: 40px dotted blue;
10 border-left: 50px dotted blue; 10 border-left: 50px dotted blue;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 <div style="position: relative"> 44 <div style="position: relative">
45 <div class="grid verticalLR" data-expected-width="280" data-expected-height= "260"> 45 <div class="grid verticalLR" data-expected-width="280" data-expected-height= "260">
46 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 20" data-expected-width="20" data-expected-height="40"></div> 46 <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 firstRowSecondColumn" data-offset-x="50" data-offset-y= "120" data-expected-width="20" data-expected-height="40"></div> 47 <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 secondRowFirstColumn" data-offset-x="150" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div> 48 <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 secondRowSecondColumn" data-offset-x="150" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div> 49 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div>
50 </div> 50 </div>
51 </div> 51 </div>
52 52
53 <div style="position: relative">
54 <div class="grid horizontalBT" data-expected-width="280" data-expected-heigh t="260">
55 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div>
56 <div class="item firstRowSecondColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
57 <div class="item secondRowFirstColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div>
58 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
59 </div>
60 </div>
61
62 <!-- rtl direciton --> 53 <!-- rtl direciton -->
63 <div style="position: relative"> 54 <div style="position: relative">
64 <div class="grid directionRTL" data-expected-width="280" data-expected-heigh t="260"> 55 <div class="grid directionRTL" data-expected-width="280" data-expected-heigh t="260">
65 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "20" data-expected-width="20" data-expected-height="40"></div> 56 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "20" data-expected-width="20" data-expected-height="40"></div>
66 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div> 57 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="20" data-expected-width="20" data-expected-height="40"></div>
67 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="120" data-expected-width="20" data-expected-height="40"></div> 58 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="120" data-expected-width="20" data-expected-height="40"></div>
68 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div> 59 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="120" data-expected-width="20" data-expected-height="40"></div>
69 </div> 60 </div>
70 </div> 61 </div>
71 62
72 <div style="position: relative"> 63 <div style="position: relative">
73 <div class="grid verticalRL directionRTL" data-expected-width="280" data-exp ected-height="260"> 64 <div class="grid verticalRL directionRTL" data-expected-width="280" data-exp ected-height="260">
74 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div> 65 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div>
75 <div class="item firstRowSecondColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div> 66 <div class="item firstRowSecondColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div>
76 <div class="item secondRowFirstColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div> 67 <div class="item secondRowFirstColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
77 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div> 68 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
78 </div> 69 </div>
79 </div> 70 </div>
80 71
81 <div style="position: relative"> 72 <div style="position: relative">
82 <div class="grid verticalLR directionRTL" data-expected-width="280" data-exp ected-height="260"> 73 <div class="grid verticalLR directionRTL" data-expected-width="280" data-exp ected-height="260">
83 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div> 74 <div class="item firstRowFirstColumn" data-offset-x="50" data-offset-y=" 180" data-expected-width="20" data-expected-height="40"></div>
84 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div> 75 <div class="item firstRowSecondColumn" data-offset-x="50" data-offset-y= "80" data-expected-width="20" data-expected-height="40"></div>
85 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div> 76 <div class="item secondRowFirstColumn" data-offset-x="150" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
86 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div> 77 <div class="item secondRowSecondColumn" data-offset-x="150" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
87 </div> 78 </div>
88 </div> 79 </div>
89 80
90 <div style="position: relative">
91 <div class="grid horizontalBT directionRTL" data-expected-width="280" data-e xpected-height="260">
92 <div class="item firstRowFirstColumn" data-offset-x="230" data-offset-y= "180" data-expected-width="20" data-expected-height="40"></div>
93 <div class="item firstRowSecondColumn" data-offset-x="130" data-offset-y ="180" data-expected-width="20" data-expected-height="40"></div>
94 <div class="item secondRowFirstColumn" data-offset-x="230" data-offset-y ="80" data-expected-width="20" data-expected-height="40"></div>
95 <div class="item secondRowSecondColumn" data-offset-x="130" data-offset- y="80" data-expected-width="20" data-expected-height="40"></div>
96 </div>
97 </div>
98
99 </body> 81 </body>
100 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698