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

Unified Diff: third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html

Issue 2913093002: Revert of [css-align] Don't resolve 'auto' values for computed style. (Closed)
Patch Set: Created 3 years, 7 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: third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html b/third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html
index 4e11e1ed007df331e9b2795a86b95a62f3d8ce01..4a4b7602110672b2931fbbdfc69c4009559ae409 100644
--- a/third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html
+++ b/third_party/WebKit/LayoutTests/fast/alignment/parse-justify-self.html
@@ -14,10 +14,6 @@
#justifySelfStretch {
justify-self: stretch;
-}
-
-#justifySelfNormal {
- justify-self: normal;
}
#justifySelfStart {
@@ -93,7 +89,6 @@
<div id="justifySelfFirstBaseline"></div>
<div id="justifySelfLastBaseline"></div>
<div id="justifySelfStretch"></div>
-<div id="justifySelfNormal"></div>
<div id="justifySelfStart"></div>
<div id="justifySelfEnd"></div>
<div id="justifySelfCenter"></div>
@@ -125,8 +120,6 @@
checkValues(justifySelfLastBaseline, "justifySelf", "justify-self", "", "last baseline");
var justifySelfStretch = document.getElementById("justifySelfStretch");
checkValues(justifySelfStretch, "justifySelf", "justify-self", "", "stretch");
- var justifySelfNormal = document.getElementById("justifySelfNormal");
- checkValues(justifySelfNormal, "justifySelf", "justify-self", "", "normal");
var justifySelfStart = document.getElementById("justifySelfStart");
checkValues(justifySelfStart, "justifySelf", "justify-self", "", "start");
var justifySelfEnd = document.getElementById("justifySelfEnd");
@@ -167,7 +160,7 @@
test(function() {
element = document.createElement("div");
document.body.appendChild(element);
- checkValues(element, "justifySelf", "justify-self", "", "auto");
+ checkValues(element, "justifySelf", "justify-self", "", "normal");
}, "Test initial value of justify-self through JS");
test(function() {
@@ -193,19 +186,16 @@
element.style.justifySelf = "self-start";
checkValues(element, "justifySelf", "justify-self", "self-start", "self-start");
- element.style.justifySelf = "normal";
- checkValues(element, "justifySelf", "justify-self", "normal", "normal");
-
element.style.justifySelf = "auto";
- checkValues(element, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(element, "justifySelf", "justify-self", "auto", "normal");
container.style.display = "flex";
element.style.justifySelf = "auto";
- checkValues(element, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(element, "justifySelf", "justify-self", "auto", "normal");
container.style.display = "grid";
element.style.justifySelf = "auto";
- checkValues(element, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(element, "justifySelf", "justify-self", "auto", "normal");
element.style.justifySelf = "self-end";
checkValues(element, "justifySelf", "justify-self", "self-end", "self-end");
@@ -213,7 +203,7 @@
test(function() {
document.documentElement.style.justifySelf = "auto";
- checkValues(document.documentElement, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.documentElement, "justifySelf", "justify-self", "auto", "normal");
}, "Test 'auto' value resolution for the root node");
test(function() {
@@ -225,9 +215,6 @@
checkBadValues(element, "justifySelf", "justify-self", "unsafe auto");
checkBadValues(element, "justifySelf", "justify-self", "auto safe");
checkBadValues(element, "justifySelf", "justify-self", "auto left");
- checkBadValues(element, "justifySelf", "justify-self", "normal unsafe");
- checkBadValues(element, "justifySelf", "justify-self", "normal stretch");
- checkBadValues(element, "justifySelf", "justify-self", "baseline normal");
checkBadValues(element, "justifySelf", "justify-self", "baseline safe");
checkBadValues(element, "justifySelf", "justify-self", "baseline center");
checkBadValues(element, "justifySelf", "justify-self", "stretch unsafe");
@@ -253,35 +240,35 @@
test(function() {
container.style.display = "";
- checkInitialValues(element, "justifySelf", "justify-self", "center", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "center", "normal");
}, "Test the value 'initial'");
test(function() {
container.style.display = "grid";
- checkInitialValues(element, "justifySelf", "justify-self", "left safe", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "left safe", "normal");
}, "Test the value 'initial' for grid containers");
test(function() {
container.style.display = "flex";
- checkInitialValues(element, "justifySelf", "justify-self", "right unsafe", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "right unsafe", "normal");
}, "Test the value 'initial' for flex containers");
test(function() {
container.style.display = "";
element.style.position = "absolute";
- checkInitialValues(element, "justifySelf", "justify-self", "left", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "left", "normal");
}, "Test the value 'initial' for positioned elements");
test(function() {
container.style.display = "grid";
element.style.position = "absolute";
- checkInitialValues(element, "justifySelf", "justify-self", "right", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "right", "normal");
}, "Test the value 'initial' for positioned elements in grid containers");
test(function() {
container.style.display = "flex";
element.style.position = "absolute";
- checkInitialValues(element, "justifySelf", "justify-self", "end", "auto");
+ checkInitialValues(element, "justifySelf", "justify-self", "end", "normal");
}, "Test the value 'initial' for positioned elements in grid containers");
test(function() {

Powered by Google App Engine
This is Rietveld 408576698