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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/child-overflow-expected.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 <head> 3 <head>
4 <style> 4 <style>
5 .container { 5 .container {
6 display: inline-block; 6 display: inline-block;
7 vertical-align: top; 7 vertical-align: top;
8 margin-right: 30px; 8 margin-right: 30px;
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
(...skipping 16 matching lines...) Expand all
27 27
28 p { 28 p {
29 margin-bottom: 30px; 29 margin-bottom: 30px;
30 } 30 }
31 </style> 31 </style>
32 </head> 32 </head>
33 <body> 33 <body>
34 <p>Scrollbars should work in all the flexboxes. Each row should be aligned 34 <p>Scrollbars should work in all the flexboxes. Each row should be aligned
35 to the same corner.</p> 35 to the same corner.</p>
36 36
37 <div class="container bottomLeft"><div><div></div></div></div>
38 <div class="container bottomLeft"><div><div></div></div></div>
39 <div class="container bottomLeft"><div><div></div></div></div>
40 <div class="container bottomLeft"><div><div></div></div></div>
41 <br>
42 <div class="container topRight"><div><div></div></div></div> 37 <div class="container topRight"><div><div></div></div></div>
43 <div class="container topRight"><div><div></div></div></div> 38 <div class="container topRight"><div><div></div></div></div>
44 <div class="container topRight"><div><div></div></div></div> 39 <div class="container topRight"><div><div></div></div></div>
45 <div class="container topRight"><div><div></div></div></div> 40 <div class="container topRight"><div><div></div></div></div>
46 <br> 41 <br>
47 <div class="container"><div><div></div></div></div> 42 <div class="container"><div><div></div></div></div>
48 <div class="container"><div><div></div></div></div> 43 <div class="container"><div><div></div></div></div>
49 <div class="container"><div><div></div></div></div> 44 <div class="container"><div><div></div></div></div>
50 <div class="container"><div><div></div></div></div> 45 <div class="container"><div><div></div></div></div>
51 <br> 46 <br>
52 <div class="container"><div><div></div></div></div> 47 <div class="container"><div><div></div></div></div>
53 <div class="container"><div><div></div></div></div> 48 <div class="container"><div><div></div></div></div>
54 <div class="container"><div><div></div></div></div> 49 <div class="container"><div><div></div></div></div>
55 <div class="container"><div><div></div></div></div> 50 <div class="container"><div><div></div></div></div>
56 51
57 <script> 52 <script>
58 53
59 Array.prototype.forEach.call(document.querySelectorAll('.bottomLeft'), function( element) { 54 Array.prototype.forEach.call(document.querySelectorAll('.bottomLeft'), function( element) {
60 element.firstChild.scrollTop = 1000; 55 element.firstChild.scrollTop = 1000;
61 }); 56 });
62 57
63 Array.prototype.forEach.call(document.querySelectorAll('.topRight'), function(el ement) { 58 Array.prototype.forEach.call(document.querySelectorAll('.topRight'), function(el ement) {
64 element.firstChild.scrollLeft = 1000; 59 element.firstChild.scrollLeft = 1000;
65 }); 60 });
66 61
67 </script> 62 </script>
68 </body> 63 </body>
69 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698