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

Unified Diff: LayoutTests/css3/flexbox/floated-flexbox.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/floated-flexbox.html
diff --git a/LayoutTests/css3/flexbox/floated-flexbox.html b/LayoutTests/css3/flexbox/floated-flexbox.html
index bc513ac40e191c5156382fe12e0b9c47b0daf12d..e2a0e45011c9cb57c0474b81b4f91527008f0969 100644
--- a/LayoutTests/css3/flexbox/floated-flexbox.html
+++ b/LayoutTests/css3/flexbox/floated-flexbox.html
@@ -2,7 +2,7 @@
<html>
<style>
.flexbox {
- display: -webkit-flex;
+ display: flex;
background-color: #aaa;
border: 5px solid blue;
float:left;
@@ -25,8 +25,8 @@
<div style="clear: left; position: relative">
<div style="width: 100px; height: 100px; background-color: green; float: left"></div>
<div data-expected-height=30 data-offset-x=100 data-offset-y=0 class="flexbox" style="float: none">
- <div data-expected-height=20 data style="height: 20px; -webkit-flex: 1"></div>
- <div data-expected-height=20 style="height: 20px; -webkit-flex: 1"></div>
+ <div data-expected-height=20 data style="height: 20px; flex: 1"></div>
+ <div data-expected-height=20 style="height: 20px; flex: 1"></div>
</div>
</div>
« no previous file with comments | « LayoutTests/css3/flexbox/flexitem-stretch-range.html ('k') | LayoutTests/css3/flexbox/floated-flexitem.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698