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

Unified Diff: LayoutTests/css3/flexbox/percent-margins.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/percent-margins.html
diff --git a/LayoutTests/css3/flexbox/percent-margins.html b/LayoutTests/css3/flexbox/percent-margins.html
index 07199113d7def6f5da145654c36cff9d845d300a..7bfe41a8a24992179bed553b6e3d83b97770cb4b 100644
--- a/LayoutTests/css3/flexbox/percent-margins.html
+++ b/LayoutTests/css3/flexbox/percent-margins.html
@@ -2,18 +2,18 @@
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.flexbox')">
-<div class="flexbox" style="display:-webkit-flex; -webkit-flex-direction: column; background-color: salmon; height: 300px; width: 400px;">
- <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex: 1" data-expected-width=320 data-expected-height=135></div>
+<div class="flexbox" style="display:flex; flex-direction: column; background-color: salmon; height: 300px; width: 400px;">
+ <div style="margin: 10%; background-color: orange; height: 5px; flex: 1" data-expected-width=320 data-expected-height=135></div>
<div style="margin: 10%; background-color: orange; height: 5px;" data-expected-width=320 data-expected-height=5></div>
</div>
-<div class="flexbox" style="display:-webkit-flex; background-color: salmon; height: 300px; width: 400px;">
- <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
+<div class="flexbox" style="display:flex; background-color: salmon; height: 300px; width: 400px;">
+ <div style="margin: 10%; background-color: orange; height: 5px; flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
<div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div>
</div>
-<div class="flexbox" style="display:-webkit-flex; background-color: salmon; height: 300px; width: 400px; padding: 100px;">
- <div style="margin: 10%; background-color: orange; height: 5px; -webkit-flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
+<div class="flexbox" style="display:flex; background-color: salmon; height: 300px; width: 400px; padding: 100px;">
+ <div style="margin: 10%; background-color: orange; height: 5px; flex: 1 5px" data-expected-width=235 data-expected-height=5></div>
<div style="margin: 10%; background-color: orange; height: 5px; width: 5px" data-expected-width=5 data-expected-height=5></div>
</div>
« no previous file with comments | « LayoutTests/css3/flexbox/overflow-keep-scrollpos.html ('k') | LayoutTests/css3/flexbox/percentage-heights.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698