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

Unified Diff: LayoutTests/css3/flexbox/flex-flow-initial.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/flex-flow-initial.html
diff --git a/LayoutTests/css3/flexbox/flex-flow-initial.html b/LayoutTests/css3/flexbox/flex-flow-initial.html
index 98a541dcc9638271f2fd58aa86e19d7917ee59c1..35c5978779f6b9af593bb4dbaef737746a3ca212 100644
--- a/LayoutTests/css3/flexbox/flex-flow-initial.html
+++ b/LayoutTests/css3/flexbox/flex-flow-initial.html
@@ -1,27 +1,27 @@
<!DOCTYPE html>
<style>
#test1 {
- -webkit-flex-flow: column;
+ flex-flow: column;
}
#test1 {
- -webkit-flex-flow: initial;
+ flex-flow: initial;
}
#test2 {
- -webkit-flex-direction: column;
+ flex-direction: column;
}
#test2 {
- -webkit-flex-direction: initial;
+ flex-direction: initial;
}
</style>
<span id="test1"></span>
<span id="test2"></span>
<script src="../../resources/js-test.js"></script>
<script>
-description("Tests that 'initial' is handled correctly for the -webkit-flex-flow shorthand.");
-value1 = window.getComputedStyle(test1).webkitFlexDirection;
-value2 = window.getComputedStyle(test2).webkitFlexDirection;
-shouldBeEqualToString('window.getComputedStyle(test1).webkitFlexDirection', 'row');
-shouldBeEqualToString('window.getComputedStyle(test2).webkitFlexDirection', 'row');
+description("Tests that 'initial' is handled correctly for the flex-flow shorthand.");
+value1 = window.getComputedStyle(test1).flexDirection;
+value2 = window.getComputedStyle(test2).flexDirection;
+shouldBeEqualToString('window.getComputedStyle(test1).flexDirection', 'row');
+shouldBeEqualToString('window.getComputedStyle(test2).flexDirection', 'row');
if (window.testRunner)
testRunner.dumpAsText();
</script>
« no previous file with comments | « LayoutTests/css3/flexbox/flex-flow-border.html ('k') | LayoutTests/css3/flexbox/flex-flow-initial-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698