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

Side by Side Diff: LayoutTests/css3/flexbox/relayout-align-items.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 <link rel="stylesheet" href="resources/flexbox.css"> 4 <link rel="stylesheet" href="resources/flexbox.css">
5 <style> 5 <style>
6 .flexbox { 6 .flexbox {
7 height: 100px; 7 height: 100px;
8 position: relative; 8 position: relative;
9 } 9 }
10 .flexbox > div { 10 .flexbox > div {
(...skipping 18 matching lines...) Expand all
29 <div data-expected-height="100" data-offset-y="0"></div> 29 <div data-expected-height="100" data-offset-y="0"></div>
30 <div data-expected-height="100" data-offset-y="0" class="align-self-auto"></ div> 30 <div data-expected-height="100" data-offset-y="0" class="align-self-auto"></ div>
31 <div data-expected-height="10" data-offset-y="0" class="align-self-flex-star t"></div> 31 <div data-expected-height="10" data-offset-y="0" class="align-self-flex-star t"></div>
32 <div data-expected-height="10" data-offset-y="90" class="align-self-flex-end "></div> 32 <div data-expected-height="10" data-offset-y="90" class="align-self-flex-end "></div>
33 <div data-expected-height="10" data-offset-y="45" class="align-self-center"> </div> 33 <div data-expected-height="10" data-offset-y="45" class="align-self-center"> </div>
34 <div data-expected-height="10" data-offset-y="0" class="align-self-baseline" ></div> 34 <div data-expected-height="10" data-offset-y="0" class="align-self-baseline" ></div>
35 <div data-expected-height="100" data-offset-y="0" class="align-self-stretch" ></div> 35 <div data-expected-height="100" data-offset-y="0" class="align-self-stretch" ></div>
36 </div> 36 </div>
37 <script> 37 <script>
38 document.body.offsetLeft; 38 document.body.offsetLeft;
39 document.getElementById("from-stretch").style.webkitAlignItems = "flex-end"; 39 document.getElementById("from-stretch").style.alignItems = "flex-end";
40 document.getElementById("to-stretch").style.webkitAlignItems = "stretch"; 40 document.getElementById("to-stretch").style.alignItems = "stretch";
41 checkLayout(".flexbox"); 41 checkLayout(".flexbox");
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/preferred-widths-orthogonal.html ('k') | LayoutTests/css3/flexbox/repaint.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698