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

Unified Diff: LayoutTests/css3/flexbox/auto-height-dynamic.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/auto-height-dynamic.html
diff --git a/LayoutTests/css3/flexbox/auto-height-dynamic.html b/LayoutTests/css3/flexbox/auto-height-dynamic.html
index 1770868ba5af376efdb29672afb440c86eaa9dc3..419a39a96afc2c51f7672abe96f90bc85283e710 100644
--- a/LayoutTests/css3/flexbox/auto-height-dynamic.html
+++ b/LayoutTests/css3/flexbox/auto-height-dynamic.html
@@ -15,18 +15,18 @@
<body onload="checkLayout('.flexbox')">
<div class="flexbox column" data-expected-height=0>
- <div class="flexitem" data-expected-height=0 style="-webkit-flex: 100px"></div>
+ <div class="flexitem" data-expected-height=0 style="flex: 100px"></div>
</div>
<div class="flexbox column" data-expected-height=0>
- <div class="flexitem2" data-expected-height=0 style="-webkit-flex: 100px"></div>
+ <div class="flexitem2" data-expected-height=0 style="flex: 100px"></div>
</div>
<script>
document.querySelector('.flexitem').offsetHeight;
document.querySelector('.flexitem2').offsetHeight;
-document.querySelector('.flexitem').style.webkitFlex = "1";
-document.querySelector('.flexitem2').style.webkitFlex = "1 auto";
+document.querySelector('.flexitem').style.flex = "1";
+document.querySelector('.flexitem2').style.flex = "1 auto";
</script>
</body>
« no previous file with comments | « LayoutTests/css3/flexbox/anonymous-block-merge-crash.html ('k') | LayoutTests/css3/flexbox/auto-margins.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698