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

Unified Diff: LayoutTests/css3/flexbox/percentage-sizes.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.html
diff --git a/LayoutTests/css3/flexbox/percentage-sizes.html b/LayoutTests/css3/flexbox/percentage-sizes.html
index 2ccbb7c0cae44ba080e4127adaab44ae24758100..edc14a1f9034369c812ee332e2d32bdccc6a301c 100644
--- a/LayoutTests/css3/flexbox/percentage-sizes.html
+++ b/LayoutTests/css3/flexbox/percentage-sizes.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<style>
.flexbox {
- display: -webkit-flex;
+ display: flex;
}
.column, .column .fixed {
height: 50px;
@@ -16,10 +16,10 @@
height: 20px;
}
.flexbox > div {
- -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;
@@ -75,25 +75,25 @@
<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>
<div class="container row">
<div class="flexbox fixed">
- <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 fixed">
- <div style="-webkit-flex: 0 0 50%" data-expected-height=25></div>
+ <div style="flex: 0 0 50%" data-expected-height=25></div>
</div>
</div>
« no previous file with comments | « LayoutTests/css3/flexbox/percentage-heights.html ('k') | LayoutTests/css3/flexbox/percentage-sizes-quirks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698