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

Side by Side Diff: LayoutTests/css3/flexbox/percent-margins.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 <script src="../../resources/check-layout.js"></script> 2 <script src="../../resources/check-layout.js"></script>
3 <body onload="checkLayout('.flexbox')"> 3 <body onload="checkLayout('.flexbox')">
4 4
5 <div class="flexbox" style="display:-webkit-flex; -webkit-flex-direction: column ; background-color: salmon; height: 300px; width: 400px;"> 5 <div class="flexbox" style="display:flex; flex-direction: column; background-col or: salmon; height: 300px; width: 400px;">
6 <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex : 1" data-expected-width=320 data-expected-height=135></div> 6 <div style="margin: 10%; background-color: orange; height: 5px; flex: 1" dat a-expected-width=320 data-expected-height=135></div>
7 <div style="margin: 10%; background-color: orange; height: 5px;" data-expect ed-width=320 data-expected-height=5></div> 7 <div style="margin: 10%; background-color: orange; height: 5px;" data-expect ed-width=320 data-expected-height=5></div>
8 </div> 8 </div>
9 9
10 <div class="flexbox" style="display:-webkit-flex; background-color: salmon; heig ht: 300px; width: 400px;"> 10 <div class="flexbox" style="display:flex; background-color: salmon; height: 300p x; width: 400px;">
11 <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex : 1 5px" data-expected-width=235 data-expected-height=5></div> 11 <div style="margin: 10%; background-color: orange; height: 5px; flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
12 <div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div> 12 <div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div>
13 </div> 13 </div>
14 14
15 <div class="flexbox" style="display:-webkit-flex; background-color: salmon; heig ht: 300px; width: 400px; padding: 100px;"> 15 <div class="flexbox" style="display:flex; background-color: salmon; height: 300p x; width: 400px; padding: 100px;">
16 <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex : 1 5px" data-expected-width=235 data-expected-height=5></div> 16 <div style="margin: 10%; background-color: orange; height: 5px; flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
17 <div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div> 17 <div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div>
18 </div> 18 </div>
19 19
20 </body> 20 </body>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/overflow-keep-scrollpos.html ('k') | LayoutTests/css3/flexbox/percentage-heights.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698