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

Unified Diff: LayoutTests/css3/flexbox/flex-no-flex.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/flex-no-flex.html
diff --git a/LayoutTests/css3/flexbox/flex-no-flex.html b/LayoutTests/css3/flexbox/flex-no-flex.html
index c3885a6e9e4654e19a6a4cbc52e250aa24150d8a..d26c14cce9ca08db977407dd3e7102ff2c84621e 100644
--- a/LayoutTests/css3/flexbox/flex-no-flex.html
+++ b/LayoutTests/css3/flexbox/flex-no-flex.html
@@ -5,7 +5,7 @@ body {
margin: 0;
}
.flexbox {
- display: -webkit-flex;
+ display: flex;
background-color: #aaa;
position: relative;
}
@@ -21,24 +21,24 @@ body {
height: 200px;
}
.row div {
- -webkit-flex: 1 auto;
+ flex: 1 auto;
}
.noflex .row :nth-child(1) {
width: 50px;
- -webkit-flex: none;
+ flex: none;
}
.column {
- -webkit-flex-direction: column;
+ flex-direction: column;
width: 200px;
height: 200px;
}
.column div {
- -webkit-flex: 1 auto;
+ flex: 1 auto;
}
.noflex .column :nth-child(1) {
height: 50px;
- -webkit-flex: none;
+ flex: none;
}
</style>
« no previous file with comments | « LayoutTests/css3/flexbox/flex-longhand-parsing-expected.txt ('k') | LayoutTests/css3/flexbox/flex-order.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698