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

Unified Diff: LayoutTests/css3/flexbox/flexitem-stretch-image.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/flexitem.html ('k') | LayoutTests/css3/flexbox/flexitem-stretch-range.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/flexitem-stretch-image.html
diff --git a/LayoutTests/css3/flexbox/flexitem-stretch-image.html b/LayoutTests/css3/flexbox/flexitem-stretch-image.html
index 547142ee4c94590b3dae4e6fefac99900d0f70c2..8f64f26c243668f5ae9b6b556d2af1aa8f4b6261 100644
--- a/LayoutTests/css3/flexbox/flexitem-stretch-image.html
+++ b/LayoutTests/css3/flexbox/flexitem-stretch-image.html
@@ -3,7 +3,7 @@
<style>
.flexbox {
width: 600px;
- display: -webkit-flex;
+ display: flex;
background-color: #aaa;
position: relative;
min-height: 10px;
@@ -19,8 +19,8 @@
<body onload="checkLayout('.flexbox')">
<div class="flexbox">
- <img data-expected-display="block" data-expected-width="345" style="-webkit-flex: 1 0 auto;" src="../images/resources/blue-100.png">
- <img data-expected-display="block" data-expected-width="255" data-expected-height="100" style="-webkit-flex: 1 0 auto;" src="../images/resources/green-10.png">
+ <img data-expected-display="block" data-expected-width="345" style="flex: 1 0 auto;" src="../images/resources/blue-100.png">
+ <img data-expected-display="block" data-expected-width="255" data-expected-height="100" style="flex: 1 0 auto;" src="../images/resources/green-10.png">
</div>
</body>
« no previous file with comments | « LayoutTests/css3/flexbox/flexitem.html ('k') | LayoutTests/css3/flexbox/flexitem-stretch-range.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698