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

Unified Diff: LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.html
diff --git a/LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.html b/LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.html
index c35b774fd160d29a6420fd682967e37696e1255a..b5c149f00fe2c2071a5cb07dbab7b3274baab0f9 100644
--- a/LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.html
+++ b/LayoutTests/css3/flexbox/columns-height-set-via-top-bottom.html
@@ -9,7 +9,7 @@
border: 2px solid orange;
}
.flexbox {
- -webkit-flex-direction: column;
+ flex-direction: column;
position: absolute;
top: 0;
right: 0;
@@ -30,14 +30,14 @@
<div class="container">
<div data-expected-height=100 class="flexbox column">
<div data-expected-height=30 data-expected-width=80 style="height: 30px"></div>
- <div data-expected-height=50 data-expected-width=80 style="-webkit-flex: 1; -moz-flex: 1"></div>
+ <div data-expected-height=50 data-expected-width=80 style="flex: 1;"></div>
</div>
</div>
<div class="container">
<div class="flexbox column wrap">
<div data-expected-height=50 data-expected-width=40 style="height: 50px"></div>
- <div data-expected-height=80 data-expected-width=40 style="-webkit-flex: 1 50px; -moz-flex: 1 50px"></div>
+ <div data-expected-height=80 data-expected-width=40 style="flex: 1 50px;"></div>
</div>
</div>
</body>
« no previous file with comments | « LayoutTests/css3/flexbox/columns-auto-size.html ('k') | LayoutTests/css3/flexbox/content-height-with-scrollbars.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698