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

Unified Diff: LayoutTests/css3/flexbox/multiline-shrink-to-fit.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/multiline-shrink-to-fit.html
diff --git a/LayoutTests/css3/flexbox/multiline-shrink-to-fit.html b/LayoutTests/css3/flexbox/multiline-shrink-to-fit.html
index 2d7bde74a63efd6aaf64461381381897b87fdb69..79432831a89813d9cc268cdcc81cb3681334b540 100644
--- a/LayoutTests/css3/flexbox/multiline-shrink-to-fit.html
+++ b/LayoutTests/css3/flexbox/multiline-shrink-to-fit.html
@@ -2,16 +2,16 @@
<html>
<style>
.flexbox {
- display: -webkit-flex;
+ display: flex;
background-color: #aaa;
position: relative;
- -webkit-flex-wrap: wrap;
- -webkit-flex-direction: column;
+ flex-wrap: wrap;
+ flex-direction: column;
float: left;
- -webkit-align-content: flex-start;
+ align-content: flex-start;
}
.flexbox > * {
- -webkit-flex: none;
+ flex: none;
}
.flexbox :nth-child(1) {
background-color: lightblue;

Powered by Google App Engine
This is Rietveld 408576698