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

Unified Diff: LayoutTests/css3/flexbox/flexitem.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/flexitem.html
diff --git a/LayoutTests/css3/flexbox/flexitem.html b/LayoutTests/css3/flexbox/flexitem.html
index 0bfc2158fd024e6c12cffc60952c3524b16071d7..b2a312130bba38ed226d17773f57657b652cd0f0 100644
--- a/LayoutTests/css3/flexbox/flexitem.html
+++ b/LayoutTests/css3/flexbox/flexitem.html
@@ -133,12 +133,12 @@
<!-- tests that images can shrink below their CSS height with min-height: min-content -->
<div class="flexbox column" style="height:50px">
- <img data-expected-height="50" style="-webkit-flex-shrink:1;height:1000px;min-height:-webkit-min-content;" src="../images/resources/blue-10.png">
+ <img data-expected-height="50" style="flex-shrink:1;height:1000px;min-height:-webkit-min-content;" src="../images/resources/blue-10.png">
</div>
<!-- tests that text can shrink below its CSS height with min-height: min-content -->
<div class="flexbox column" style="height:50px">
- <div data-expected-height="50" style="-webkit-flex-shrink:1;height:1000px;min-height:-webkit-min-content;" src="../images/resources/blue-10.png">
+ <div data-expected-height="50" style="flex-shrink:1;height:1000px;min-height:-webkit-min-content;" src="../images/resources/blue-10.png">
Some text<br>
Some more text
</div>
@@ -146,7 +146,7 @@
<!-- tests that images can shrink below their CSS width with min-width: min-content -->
<div class="flexbox" style="width:50px">
- <img data-expected-width="50" style="-webkit-flex-shrink:1;width:1000px;min-width:-webkit-min-content;" src="../images/resources/blue-10.png">
+ <img data-expected-width="50" style="flex-shrink:1;width:1000px;min-width:-webkit-min-content;" src="../images/resources/blue-10.png">
</div>
<!-- tests that min-width expands the width of flex items beyond the width of the flexbox -->
« no previous file with comments | « LayoutTests/css3/flexbox/flexbox-overflow-auto-expected.html ('k') | LayoutTests/css3/flexbox/flexitem-stretch-image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698