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

Unified Diff: LayoutTests/css3/flexbox/flexbox-overflow-auto.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/flexbox-overflow-auto.html
diff --git a/LayoutTests/css3/flexbox/flexbox-overflow-auto.html b/LayoutTests/css3/flexbox/flexbox-overflow-auto.html
index 358ceb6a86376d3502cf77289ee82be0996d93f6..dcf5c143f2e1b1906342c5d5e96071d4edf1c919 100644
--- a/LayoutTests/css3/flexbox/flexbox-overflow-auto.html
+++ b/LayoutTests/css3/flexbox/flexbox-overflow-auto.html
@@ -3,11 +3,11 @@
<head>
<style>
.test-row {
- display: -webkit-flex;
+ display: flex;
margin-bottom: 5px;
}
.test-row > div {
- -webkit-flex: none;
+ flex: none;
}
.container {
@@ -33,24 +33,24 @@
}
.row {
- -webkit-flex-direction: row;
+ flex-direction: row;
}
.row-reverse {
- -webkit-flex-direction: row-reverse;
+ flex-direction: row-reverse;
}
.column {
- -webkit-flex-direction: column;
+ flex-direction: column;
}
.column-reverse {
- -webkit-flex-direction: column-reverse;
+ flex-direction: column-reverse;
}
.flexbox {
border: 0 solid pink;
- display: -webkit-flex;
+ display: flex;
height: 100px;
width: 100px;
overflow: auto;
@@ -60,7 +60,7 @@
width: 200px;
height: 200px;
background: -webkit-radial-gradient(center, ellipse cover, rgba(30,87,153,1) 0%,rgba(89,148,202,1) 62%,rgba(95,154,207,0.7) 68%,rgba(125,185,232,0) 100%);
- -webkit-flex: none;
+ flex: none;
}
</style>
« no previous file with comments | « LayoutTests/css3/flexbox/flexbox-baseline.html ('k') | LayoutTests/css3/flexbox/flexbox-overflow-auto-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698