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

Side by Side Diff: LayoutTests/css3/flexbox/flexbox-overflow-auto-expected.html

Issue 1088633002: Unprefix flexbox tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: whoops, a > went missing Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .test-row { 5 .test-row {
6 display: -webkit-flex; 6 display: flex;
7 margin-bottom: 5px; 7 margin-bottom: 5px;
8 } 8 }
9 .test-row > div { 9 .test-row > div {
10 -webkit-flex: none; 10 flex: none;
11 } 11 }
12 12
13 .container { 13 .container {
14 margin-right: 5px; 14 margin-right: 5px;
15 border: 5px solid lightgreen; 15 border: 5px solid lightgreen;
16 width: 100px; 16 width: 100px;
17 } 17 }
18 18
19 .flexbox { 19 .flexbox {
20 display: block; 20 display: block;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 element.firstChild.scrollLeft = element.firstChild.scrollWidth - element.fir stChild.offsetWidth; 72 element.firstChild.scrollLeft = element.firstChild.scrollWidth - element.fir stChild.offsetWidth;
73 }); 73 });
74 74
75 Array.prototype.forEach.call(document.querySelectorAll(".bottom-almost"), functi on(element) { 75 Array.prototype.forEach.call(document.querySelectorAll(".bottom-almost"), functi on(element) {
76 element.firstChild.scrollTop = element.firstChild.scrollHeight - element.fir stChild.offsetHeight; 76 element.firstChild.scrollTop = element.firstChild.scrollHeight - element.fir stChild.offsetHeight;
77 }); 77 });
78 78
79 </script> 79 </script>
80 </body> 80 </body>
81 </html> 81 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flexbox-overflow-auto.html ('k') | LayoutTests/css3/flexbox/flexitem.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698