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

Unified Diff: LayoutTests/css3/flexbox/flex-flow-margins.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-flow-margins.html
diff --git a/LayoutTests/css3/flexbox/flex-flow-margins.html b/LayoutTests/css3/flexbox/flex-flow-margins.html
index 459cfdf8d578c2598c64926f56421b1f157f6662..9ecadd86e33813443a7e38085470818f027c0596 100644
--- a/LayoutTests/css3/flexbox/flex-flow-margins.html
+++ b/LayoutTests/css3/flexbox/flex-flow-margins.html
@@ -8,7 +8,7 @@
display: inline-block;
}
.flexbox {
- display: -webkit-flex;
+ display: flex;
background-color: grey;
width: 100px;
height: 100px;
@@ -35,16 +35,16 @@
-webkit-writing-mode: vertical-lr;
}
.row {
- -webkit-flex-flow: row;
+ flex-flow: row;
}
.row-reverse {
- -webkit-flex-flow: row-reverse;
+ flex-flow: row-reverse;
}
.column {
- -webkit-flex-flow: column;
+ flex-flow: column;
}
.column-reverse {
- -webkit-flex-flow: column-reverse;
+ flex-flow: column-reverse;
}
.physical {
margin: 10px 20px 30px 40px;
@@ -236,7 +236,7 @@ writingModes.forEach(function(writingMode) {
container.setAttribute('data-expected-height', expectations.container[1]);
container.innerHTML = '<div class="flexbox ' + flexboxClassName + '" ' + flexboxExpectations + '>\n' +
- '<div style="-webkit-flex: 1 auto; height: 20px; width: 20px;" ' + flexItemExpectations + '></div>\n' +
+ '<div style="flex: 1 auto; height: 20px; width: 20px;" ' + flexItemExpectations + '></div>\n' +
'</div>';
document.body.appendChild(container);
« no previous file with comments | « LayoutTests/css3/flexbox/flex-flow-initial-expected.txt ('k') | LayoutTests/css3/flexbox/flex-flow-margins-auto-size.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698