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

Unified Diff: LayoutTests/css3/flexbox/flex-align-max.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/flex-align-column.html ('k') | LayoutTests/css3/flexbox/flex-flow.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/flex-align-max.html
diff --git a/LayoutTests/css3/flexbox/flex-align-max.html b/LayoutTests/css3/flexbox/flex-align-max.html
index 7699fec5018ce3a98bf9fc40db14f7fb9573ce47..841f778c2466e16d072475ee6ef5d12ecc63d95b 100644
--- a/LayoutTests/css3/flexbox/flex-align-max.html
+++ b/LayoutTests/css3/flexbox/flex-align-max.html
@@ -29,27 +29,27 @@ body {
<body onload="checkLayout('.flexbox')">
<div class="flexbox">
- <div data-expected-height="50" style="-webkit-flex: 1 0 0; max-height: 100px"></div>
- <div data-expected-height="50" style="-webkit-flex: 1 0 0; height: 50px"></div>
- <div data-expected-height="25" style="-webkit-flex: 1 0 0; max-height: 25px"></div>
+ <div data-expected-height="50" style="flex: 1 0 0; max-height: 100px"></div>
+ <div data-expected-height="50" style="flex: 1 0 0; height: 50px"></div>
+ <div data-expected-height="25" style="flex: 1 0 0; max-height: 25px"></div>
</div>
<div class="flexbox column" style="width: 200px">
- <div data-expected-width="150" style="-webkit-flex: 1 0 20px; max-width: 150px"></div>
- <div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></div>
- <div data-expected-width="200" style="-webkit-flex: 1 0 20px;"></div>
+ <div data-expected-width="150" style="flex: 1 0 20px; max-width: 150px"></div>
+ <div data-expected-width="100" style="flex: 1 0 20px; width: 100px"></div>
+ <div data-expected-width="200" style="flex: 1 0 20px;"></div>
</div>
<div class="flexbox vertical-rl" style="height: 60px">
- <div data-expected-width="100" style="-webkit-flex: 1 0 20px; max-width: 110px"></div>
- <div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></div>
- <div data-expected-width="50" style="-webkit-flex: 1 0 20px; max-width: 50px"></div>
+ <div data-expected-width="100" style="flex: 1 0 20px; max-width: 110px"></div>
+ <div data-expected-width="100" style="flex: 1 0 20px; width: 100px"></div>
+ <div data-expected-width="50" style="flex: 1 0 20px; max-width: 50px"></div>
</div>
<div class="flexbox column vertical-rl" style="height: 50px">
- <div data-expected-height="50" style="-webkit-flex: 1 0 100px; max-height: 100px"></div>
- <div data-expected-height="50" style="-webkit-flex: 1 0 100px; height: 50px"></div>
- <div data-expected-height="25" style="-webkit-flex: 1 0 100px; max-height: 25px"></div>
+ <div data-expected-height="50" style="flex: 1 0 100px; max-height: 100px"></div>
+ <div data-expected-height="50" style="flex: 1 0 100px; height: 50px"></div>
+ <div data-expected-height="25" style="flex: 1 0 100px; max-height: 25px"></div>
</div>
</body>
« no previous file with comments | « LayoutTests/css3/flexbox/flex-align-column.html ('k') | LayoutTests/css3/flexbox/flex-flow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698