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

Unified Diff: LayoutTests/css3/flexbox/percentage-sizes-quirks.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/percentage-sizes-quirks.html
diff --git a/LayoutTests/css3/flexbox/percentage-sizes-quirks.html b/LayoutTests/css3/flexbox/percentage-sizes-quirks.html
index fd205682e0133f862226254d564ea7f9e5d01df2..ed581f1ecabe8a761dd4f83338ab9cef7a1d01dd 100644
--- a/LayoutTests/css3/flexbox/percentage-sizes-quirks.html
+++ b/LayoutTests/css3/flexbox/percentage-sizes-quirks.html
@@ -1,6 +1,6 @@
<style>
.flexbox {
- display: -webkit-flex;
+ display: flex;
}
.column {
height: 50px;
@@ -13,10 +13,10 @@
}
.row > div > div {
height: 20px;
- -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
}
.column > .flexbox {
- -webkit-flex-direction: column;
+ flex-direction: column;
}
.container > div > :nth-child(1) {
background-color: orange;
@@ -56,13 +56,13 @@
<div class="container row">
<div class="flexbox">
- <div style="-webkit-flex: 0 0 50%" data-expected-width=25></div>
+ <div style="flex: 0 0 50%" data-expected-width=25></div>
</div>
</div>
<div class="container column">
<div class="flexbox">
- <div style="-webkit-flex: 0 0 50%" data-expected-height=0></div>
+ <div style="flex: 0 0 50%" data-expected-height=0></div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698