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

Unified Diff: LayoutTests/css3/flexbox/percentage-heights.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
« no previous file with comments | « LayoutTests/css3/flexbox/percent-margins.html ('k') | LayoutTests/css3/flexbox/percentage-sizes.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/percentage-heights.html
diff --git a/LayoutTests/css3/flexbox/percentage-heights.html b/LayoutTests/css3/flexbox/percentage-heights.html
index 523bcb8e8a21d0e4cc9dafe5c9105c09dd617db2..03ef19409f55a959793be4c56523f7f8882067c8 100644
--- a/LayoutTests/css3/flexbox/percentage-heights.html
+++ b/LayoutTests/css3/flexbox/percentage-heights.html
@@ -2,7 +2,7 @@
<html>
<style>
.flexbox {
- display: -webkit-flex;
+ display: flex;
background-color: #aaa;
position: relative;
}
@@ -21,10 +21,10 @@
height: 40%;
}
.column {
- -webkit-flex-flow: column wrap;
+ flex-flow: column wrap;
width: 100px;
height: 100px;
- -webkit-align-content: flex-start;
+ align-content: flex-start;
}
</style>
<script src="../../resources/check-layout.js"></script>
@@ -43,7 +43,7 @@
</div>
<div class="flexbox column">
- <div data-expected-height="20" data-offset-x="0" data-offset-y="0" style="-webkit-flex: 1; min-height: 0; max-height: 20%"></div>
+ <div data-expected-height="20" data-offset-x="0" data-offset-y="0" style="flex: 1; min-height: 0; max-height: 20%"></div>
<div data-expected-height="40" data-offset-x="0" data-offset-y="20"></div>
<div data-expected-height="40" data-offset-x="0" data-offset-y="60"></div>
</div>
@@ -61,7 +61,7 @@
</div>
<div class="flexbox column" style="-webkit-writing-mode: vertical-rl">
- <div data-expected-width="20" data-offset-x="80" data-offset-y="0" style="-webkit-flex: 1; min-width: 0; max-width: 20%"></div>
+ <div data-expected-width="20" data-offset-x="80" data-offset-y="0" style="flex: 1; min-width: 0; max-width: 20%"></div>
<div data-expected-width="40" data-offset-x="40" data-offset-y="0"></div>
<div data-expected-width="40" data-offset-x="0" data-offset-y="0"></div>
</div>
« no previous file with comments | « LayoutTests/css3/flexbox/percent-margins.html ('k') | LayoutTests/css3/flexbox/percentage-sizes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698