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

Unified Diff: LayoutTests/css3/flexbox/repaint.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/repaint.html
diff --git a/LayoutTests/css3/flexbox/repaint.html b/LayoutTests/css3/flexbox/repaint.html
index 69ded646332a0a7df56cb958a0688db5898a2253..81d9f7665a6c67c52b7c31c52466fbcb080908d4 100644
--- a/LayoutTests/css3/flexbox/repaint.html
+++ b/LayoutTests/css3/flexbox/repaint.html
@@ -3,16 +3,16 @@
<head>
<style>
#flexbox {
- display: -webkit-flex;
+ display: flex;
}
#left {
- -webkit-flex: 1;
+ flex: 1;
background-color: yellow;
}
#content {
- -webkit-flex: 1;
+ flex: 1;
background-color: grey;
}
</style>
@@ -25,7 +25,7 @@
function setFlex(id, animationPercentage, start, end) {
var flexValue = start + ((end - start) * animationPercentage);
- document.getElementById(id).style.webkitFlex = flexValue + " 0 0px";
+ document.getElementById(id).style.flex = flexValue + " 0 0px";
}
function step(count) {
« no previous file with comments | « LayoutTests/css3/flexbox/relayout-align-items.html ('k') | LayoutTests/css3/flexbox/repaint-column-reverse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698