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

Side by Side Diff: LayoutTests/css3/flexbox/negative-flex-rounding-assert.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 <style> 3 <style>
4 .math { 4 .math {
5 display: -webkit-inline-flex; 5 display: inline-flex;
6 } 6 }
7 .math > * { 7 .math > * {
8 padding-bottom: 0.35em; 8 padding-bottom: 0.35em;
9 } 9 }
10 .mfrac { 10 .mfrac {
11 display: -webkit-inline-flex; 11 display: inline-flex;
12 -webkit-flex-direction: column; 12 flex-direction: column;
13 } 13 }
14 .mfrac > :first-child { 14 .mfrac > :first-child {
15 -webkit-margin-after: 0.2em; 15 -webkit-margin-after: 0.2em;
16 } 16 }
17 .mfrac > :last-child { 17 .mfrac > :last-child {
18 -webkit-margin-before: 0.2em; 18 -webkit-margin-before: 0.2em;
19 } 19 }
20 .x { 20 .x {
21 line-height: 9px; 21 line-height: 9px;
22 } 22 }
(...skipping 15 matching lines...) Expand all
38 <div class=mfrac> 38 <div class=mfrac>
39 <div class=mfrac> 39 <div class=mfrac>
40 <div class=x>x</div> 40 <div class=x>x</div>
41 <div class=y>y</div> 41 <div class=y>y</div>
42 </div> 42 </div>
43 <div class=x>z</div> 43 <div class=x>z</div>
44 </div> 44 </div>
45 </div> 45 </div>
46 </div> 46 </div>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698