- Revision
- 92001
- Author
- [email protected]
- Date
- 2011-07-29 10:47:53 -0700 (Fri, 29 Jul 2011)
Log Message
rename css3/flexbox/display-property.html to css3/flexbox/css-properties.html
https://bugs.webkit.org/show_bug.cgi?id=65343
Reviewed by Mihai Parparita.
I plan on adding more tests for the other flexbox properties
(flex-order, flex-direction, flex-pack, flex-align) to this file.
* css3/flexbox/css-properties-expected.txt: Copied from LayoutTests/css3/flexbox/display-property-expected.txt.
* css3/flexbox/css-properties.html: Copied from LayoutTests/css3/flexbox/display-property.html.
* css3/flexbox/display-property-expected.txt: Removed.
* css3/flexbox/display-property.html: Removed.
* css3/flexbox/script-tests/css-properties.js: Copied from LayoutTests/css3/flexbox/script-tests/display-property.js.
* css3/flexbox/script-tests/display-property.js: Removed.
Modified Paths
Added Paths
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (92000 => 92001)
--- trunk/LayoutTests/ChangeLog 2011-07-29 17:37:31 UTC (rev 92000)
+++ trunk/LayoutTests/ChangeLog 2011-07-29 17:47:53 UTC (rev 92001)
@@ -1,3 +1,20 @@
+2011-07-29 Tony Chang <[email protected]>
+
+ rename css3/flexbox/display-property.html to css3/flexbox/css-properties.html
+ https://bugs.webkit.org/show_bug.cgi?id=65343
+
+ Reviewed by Mihai Parparita.
+
+ I plan on adding more tests for the other flexbox properties
+ (flex-order, flex-direction, flex-pack, flex-align) to this file.
+
+ * css3/flexbox/css-properties-expected.txt: Copied from LayoutTests/css3/flexbox/display-property-expected.txt.
+ * css3/flexbox/css-properties.html: Copied from LayoutTests/css3/flexbox/display-property.html.
+ * css3/flexbox/display-property-expected.txt: Removed.
+ * css3/flexbox/display-property.html: Removed.
+ * css3/flexbox/script-tests/css-properties.js: Copied from LayoutTests/css3/flexbox/script-tests/display-property.js.
+ * css3/flexbox/script-tests/display-property.js: Removed.
+
2011-07-29 Csaba Osztrogonác <[email protected]>
[Qt] Unreviewed typo fix.
Copied: trunk/LayoutTests/css3/flexbox/css-properties-expected.txt (from rev 92000, trunk/LayoutTests/css3/flexbox/display-property-expected.txt) (0 => 92001)
--- trunk/LayoutTests/css3/flexbox/css-properties-expected.txt (rev 0)
+++ trunk/LayoutTests/css3/flexbox/css-properties-expected.txt 2011-07-29 17:47:53 UTC (rev 92001)
@@ -0,0 +1,14 @@
+Tests being able to set the display to -webkit-flexbox and -webkit-inline-flexbox.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS div.style.display is "-webkit-flexbox"
+PASS div.style.display is "inline"
+PASS div.style.display is "-webkit-inline-flexbox"
+PASS div.style.display is "-webkit-inline-flexbox"
+PASS div.style.display is "block"
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
Copied: trunk/LayoutTests/css3/flexbox/css-properties.html (from rev 92000, trunk/LayoutTests/css3/flexbox/display-property.html) (0 => 92001)
--- trunk/LayoutTests/css3/flexbox/css-properties.html (rev 0)
+++ trunk/LayoutTests/css3/flexbox/css-properties.html 2011-07-29 17:47:53 UTC (rev 92001)
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+<head>
+<link rel="stylesheet" href=""
+<script src=""
+</head>
+<body>
+<p id="description"></p>
+<div id="console"></div>
+<script src=""
+<script src=""
+</body>
+</html>
Deleted: trunk/LayoutTests/css3/flexbox/display-property-expected.txt (92000 => 92001)
--- trunk/LayoutTests/css3/flexbox/display-property-expected.txt 2011-07-29 17:37:31 UTC (rev 92000)
+++ trunk/LayoutTests/css3/flexbox/display-property-expected.txt 2011-07-29 17:47:53 UTC (rev 92001)
@@ -1,14 +0,0 @@
-Tests being able to set the display to -webkit-flexbox and -webkit-inline-flexbox.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS div.style.display is "-webkit-flexbox"
-PASS div.style.display is "inline"
-PASS div.style.display is "-webkit-inline-flexbox"
-PASS div.style.display is "-webkit-inline-flexbox"
-PASS div.style.display is "block"
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
Deleted: trunk/LayoutTests/css3/flexbox/display-property.html (92000 => 92001)
--- trunk/LayoutTests/css3/flexbox/display-property.html 2011-07-29 17:37:31 UTC (rev 92000)
+++ trunk/LayoutTests/css3/flexbox/display-property.html 2011-07-29 17:47:53 UTC (rev 92001)
@@ -1,13 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<link rel="stylesheet" href=""
-<script src=""
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script src=""
-<script src=""
-</body>
-</html>
Copied: trunk/LayoutTests/css3/flexbox/script-tests/css-properties.js (from rev 92000, trunk/LayoutTests/css3/flexbox/script-tests/display-property.js) (0 => 92001)
--- trunk/LayoutTests/css3/flexbox/script-tests/css-properties.js (rev 0)
+++ trunk/LayoutTests/css3/flexbox/script-tests/css-properties.js 2011-07-29 17:47:53 UTC (rev 92001)
@@ -0,0 +1,20 @@
+description('Tests being able to set the display to -webkit-flexbox and -webkit-inline-flexbox.');
+
+var div = document.createElement('div');
+
+div.style.display = '-webkit-flexbox';
+shouldBeEqualToString('div.style.display', '-webkit-flexbox');
+
+div.style.display = 'inline';
+shouldBeEqualToString('div.style.display', 'inline');
+
+div.style.display = '-webkit-inline-flexbox';
+shouldBeEqualToString('div.style.display', '-webkit-inline-flexbox');
+
+div.style.display = 'junk';
+shouldBeEqualToString('div.style.display', '-webkit-inline-flexbox');
+
+div.style.display = 'block';
+shouldBeEqualToString('div.style.display', 'block');
+
+successfullyParsed = true;
Deleted: trunk/LayoutTests/css3/flexbox/script-tests/display-property.js (92000 => 92001)
--- trunk/LayoutTests/css3/flexbox/script-tests/display-property.js 2011-07-29 17:37:31 UTC (rev 92000)
+++ trunk/LayoutTests/css3/flexbox/script-tests/display-property.js 2011-07-29 17:47:53 UTC (rev 92001)
@@ -1,20 +0,0 @@
-description('Tests being able to set the display to -webkit-flexbox and -webkit-inline-flexbox.');
-
-var div = document.createElement('div');
-
-div.style.display = '-webkit-flexbox';
-shouldBeEqualToString('div.style.display', '-webkit-flexbox');
-
-div.style.display = 'inline';
-shouldBeEqualToString('div.style.display', 'inline');
-
-div.style.display = '-webkit-inline-flexbox';
-shouldBeEqualToString('div.style.display', '-webkit-inline-flexbox');
-
-div.style.display = 'junk';
-shouldBeEqualToString('div.style.display', '-webkit-inline-flexbox');
-
-div.style.display = 'block';
-shouldBeEqualToString('div.style.display', 'block');
-
-successfullyParsed = true;