| 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>
|
|
|
|
|