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

Unified Diff: third_party/WebKit/LayoutTests/fast/alignment/parse-alignment-of-root-elements.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-alignment-of-root-elements.html
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/parse-alignment-of-root-elements.html b/third_party/WebKit/LayoutTests/fast/alignment/parse-alignment-of-root-elements.html
index 21433957392bb1e687fc5f09ee42ffeefbe856d9..f55eb5607c77cc4f0f65dd3fbcbb0ad0fee3af04 100644
--- a/third_party/WebKit/LayoutTests/fast/alignment/parse-alignment-of-root-elements.html
+++ b/third_party/WebKit/LayoutTests/fast/alignment/parse-alignment-of-root-elements.html
@@ -21,7 +21,7 @@
document.documentElement.style.alignSelf = "center";
checkValues(document.documentElement, "alignSelf", "align-self", "center", "center");
document.documentElement.style.alignSelf = "auto";
- checkValues(document.documentElement, "alignSelf", "align-self", "auto", "auto");
+ checkValues(document.documentElement, "alignSelf", "align-self", "auto", "normal");
}, "Check out how the DOM's root element resolves the align-self 'auto' values.");
test(function() {
@@ -30,11 +30,11 @@
document.body.style.alignItems = "auto"; // The 'auto' value is not valid for align-items.
document.body.style.alignSelf = "auto";
checkValues(document.body, "alignItems", "align-items", "", "normal");
- checkValues(document.body, "alignSelf", "align-self", "auto", "auto");
+ checkValues(document.body, "alignSelf", "align-self", "auto", "center");
block.style.alignItems = ""; // Default value is 'normal' for align-items.
block.style.alignSelf = "auto";
checkValues(block, "alignItems", "align-items", "", "normal");
- checkValues(block, "alignSelf", "align-self", "auto", "auto");
+ checkValues(block, "alignSelf", "align-self", "auto", "normal");
}, "Check out how the DOM's root element align-items's value is used to resolve its children's align-self 'auto' values.");
test(function() {
@@ -48,7 +48,7 @@
document.documentElement.style.justifySelf = "left";
checkValues(document.documentElement, "justifySelf", "justify-self", "left", "left");
document.documentElement.style.justifySelf = "auto";
- checkValues(document.documentElement, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.documentElement, "justifySelf", "justify-self", "auto", "normal");
}, "Check out how the DOM's root element resolves the justify-self 'auto' values.");
test(function() {
@@ -58,18 +58,18 @@
document.body.style.justifyItems = "auto";
document.body.style.justifySelf = "auto";
checkValues(document.body, "justifyItems", "justify-items", "auto", "normal");
- checkValues(document.body, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.body, "justifySelf", "justify-self", "auto", "center");
block.style.justifyItems = "auto";
block.style.justifySelf = "auto";
checkValues(block, "justifyItems", "justify-items", "auto", "normal");
- checkValues(block, "justifySelf", "justify-self", "auto", "auto");
-}, "Check out how the DOM's root element justify-items's value is used to resolve its children's justify-self 'auto' values.");
+ checkValues(block, "justifySelf", "justify-self", "auto", "normal");
+}, "Check out how the DOM's root element align-items's value is used to resolve its children's align-self 'auto' values.");
test(function() {
document.documentElement.style.justifyItems = "auto";
checkValues(document.documentElement, "justifyItems", "justify-items", "auto", "normal");
- checkValues(document.body, "justifySelf", "justify-self", "auto", "auto");
- checkValues(block, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.body, "justifySelf", "justify-self", "auto", "normal");
+ checkValues(block, "justifySelf", "justify-self", "auto", "normal");
}, "Check out how the DOM's root element deals with 'auto' value in justify-items.");
test(function() {
@@ -78,19 +78,19 @@
document.body.style.justifyItems = "auto";
document.body.style.justifySelf = "auto";
checkValues(document.body, "justifyItems", "justify-items", "auto", "legacy center");
- checkValues(document.body, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.body, "justifySelf", "justify-self", "auto", "center");
block.style.justifyItems = "auto";
block.style.justifySelf = "auto";
checkValues(block, "justifyItems", "justify-items", "auto", "legacy center");
- checkValues(block, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(block, "justifySelf", "justify-self", "auto", "center");
}, "Check out how the DOM's root element justify-items's value with 'legacy' keyword is used to resolve any descendant's justify-items 'auto' values.");
test(function() {
document.documentElement.style.justifyItems = "auto";
checkValues(document.body, "justifyItems", "justify-items", "auto", "normal");
- checkValues(document.body, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(document.body, "justifySelf", "justify-self", "auto", "normal");
checkValues(block, "justifyItems", "justify-items", "auto", "normal");
- checkValues(block, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(block, "justifySelf", "justify-self", "auto", "normal");
}, "Check out how the DOM's root element recomputes its descendant's style when 'legacy' keyword is removed from its justify-items value.");
console.log("");
@@ -112,7 +112,7 @@
shadowNode.style.alignItems = "";
checkValues(shadowNode, "alignItems", "align-items", "", "normal");
shadowNode.style.alignSelf = "auto";
- checkValues(shadowNode, "alignSelf", "align-self", "auto", "auto");
+ checkValues(shadowNode, "alignSelf", "align-self", "auto", "center");
}, "Shadow Node inherits from ShadowHost to resolve the 'auto' values for align-self.");
test(function() {
@@ -123,7 +123,7 @@
shadowNode.style.justifyItems = "";
checkValues(shadowNode, "justifyItems", "justify-items", "", "normal");
shadowNode.style.justifySelf = "auto";
- checkValues(shadowNode, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(shadowNode, "justifySelf", "justify-self", "auto", "center");
}, "Shadow Node inherits from ShadowHost to resolve the 'auto' values for justify-self.");
test(function() {
@@ -132,14 +132,14 @@
shadowNode.style.justifySelf = "auto";
checkValues(shadowHost, "justifyItems", "justify-items", "auto", "normal");
checkValues(shadowNode, "justifyItems", "justify-items", "right", "right");
- checkValues(shadowNode, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(shadowNode, "justifySelf", "justify-self", "auto", "normal");
checkValues(shadowHost, "justifyItems", "justify-items", "auto", "normal");
document.documentElement.style.justifyItems = "legacy center";
checkValues(document.documentElement, "justifyItems", "justify-items", "legacy center", "legacy center");
checkValues(shadowHost, "justifyItems", "justify-items", "auto", "legacy center");
checkValues(shadowNode, "justifyItems", "justify-items", "right", "right");
- checkValues(shadowNode, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(shadowNode, "justifySelf", "justify-self", "auto", "center");
shadowNode.style.justifyItems = "auto";
checkValues(shadowNode, "justifyItems", "justify-items", "auto", "legacy center");
document.documentElement.style.justifyItems = "auto";
@@ -161,7 +161,7 @@
slotted.style.alignSelf = "start";
checkValues(slotted, "alignSelf", "align-self", "start", "start");
slotted.style.alignSelf = "auto";
- checkValues(slotted, "alignSelf", "align-self", "auto", "auto");
+ checkValues(slotted, "alignSelf", "align-self", "auto", "normal");
}, "Check out how align-self uses the 'shadowHost' as 'slotted' element's parent while 'slot' is not assigned.");
test(function() {
@@ -174,7 +174,7 @@
slotted.style.justifySelf = "start";
checkValues(slotted, "justifySelf", "justify-self", "start", "start");
slotted.style.justifySelf = "auto";
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "normal");
}, "Check out how justify-self uses the 'shadowHost' as 'slotted' element's parent while 'slot' is not assigned.");
test(function() {
@@ -188,11 +188,11 @@
slotted.style.justifyItems = "auto";
checkValues(slotted, "justifyItems", "justify-items", "auto", "normal");
slotted.style.justifySelf = "auto";
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "normal");
shadowNode.style.justifyItems = "auto";
checkValues(shadowNode, "justifyItems", "justify-items", "auto", "legacy center");
checkValues(slotted, "justifyItems", "justify-items", "auto", "normal");
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "normal");
document.documentElement.style.justifyItems = "auto";
}, "Check out how the 'legacy' keyword in justify-items affects the 'slotted' elements while 'slot' is not assigned.");
@@ -211,7 +211,7 @@
slotted.style.alignSelf = "start";
checkValues(slotted, "alignSelf", "align-self", "start", "start");
slotted.style.alignSelf = "auto";
- checkValues(slotted, "alignSelf", "align-self", "auto", "auto");
+ checkValues(slotted, "alignSelf", "align-self", "auto", "right");
}, "Check out how align-self uses the 'slot' element's parent (Shadow Node) as 'slotted' element' s parent after the 'slot' is assigned.");
test(function() {
@@ -224,7 +224,7 @@
slotted.style.justifySelf = "start";
checkValues(slotted, "justifySelf", "justify-self", "start", "start");
slotted.style.justifySelf = "auto";
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "right");
}, "Check out how justify-self uses the 'slot' element's parent (Shadow Node) as 'slotted' element' s parent after the 'slot' is assigned.");
test(function() {
@@ -238,11 +238,11 @@
slotted.style.justifyItems = "auto";
checkValues(slotted, "justifyItems", "justify-items", "auto", "normal"); // Shadow host is not the parent now, but ShadowNode.
slotted.style.justifySelf = "auto";
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto"); // Shadow host is not the parent now, but ShadowNode.
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "right"); // Shadow host is not the parent now, but ShadowNode.
shadowNode.style.justifyItems = "auto";
checkValues(shadowNode, "justifyItems", "justify-items", "auto", "legacy center");
checkValues(slotted, "justifyItems", "justify-items", "auto", "legacy center"); // Now that shadowNode is auto, 'legacy' applies.
- checkValues(slotted, "justifySelf", "justify-self", "auto", "auto"); // Now that shadowNode is auto, 'legacy' applies.
+ checkValues(slotted, "justifySelf", "justify-self", "auto", "center"); // Now that shadowNode is auto, 'legacy' applies.
document.documentElement.style.justifyItems = "auto";
}, "Check out how the 'legacy' keyword affects the 'slotted' elements after the 'slot' is assigned.");
@@ -256,7 +256,7 @@
slot.style.alignSelf = "left";
checkValues(slot, "alignSelf", "align-self", "left", "left");
slot.style.alignSelf = "auto";
- checkValues(slot, "alignSelf", "align-self", "auto", "auto");
+ checkValues(slot, "alignSelf", "align-self", "auto", "normal");
}, "The 'slot' element should not use its parent inside the ShadowDOM tree to resolve the align-self 'auto' values because Blink does not support slots in the flat tree.");
test(function() {
@@ -270,7 +270,7 @@
slot.style.justifySelf = "left";
checkValues(slot, "justifySelf", "justify-self", "left", "left");
slot.style.justifySelf = "auto";
- checkValues(slot, "justifySelf", "justify-self", "auto", "auto");
+ checkValues(slot, "justifySelf", "justify-self", "auto", "normal");
}, "The 'slot' element should not use its parent inside the ShadowDOM tree to resolve the justify-self 'auto' values because Blink does not support slots in the flat tree.");
</script>

Powered by Google App Engine
This is Rietveld 408576698