Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[contain-intrinsic-size] Support "auto none"
https://bugs.webkit.org/show_bug.cgi?id=258618 Reviewed by Tim Nguyen. See: w3c/csswg-drafts#8989 * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/auto-014-expected.txt: Added. * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/auto-014.html: Added. * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-computed-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-computed.html: * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-invalid-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-invalid.html: * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-valid-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-valid.html: * Source/WebCore/css/CSSProperties.json: * Source/WebCore/css/ComputedStyleExtractor.cpp: (WebCore::valueForContainIntrinsicSize): * Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp: (WebCore::CSSPropertyParserHelpers::consumeContainIntrinsicSize): * Source/WebCore/dom/Document.cpp: (WebCore::CallbackForContainIntrinsicSize): * Source/WebCore/rendering/RenderBox.cpp: (WebCore::RenderBox::explicitIntrinsicInnerWidth const): (WebCore::RenderBox::explicitIntrinsicInnerHeight const): * Source/WebCore/rendering/style/RenderStyle.h: * Source/WebCore/rendering/style/RenderStyleConstants.cpp: (WebCore::operator<<): * Source/WebCore/rendering/style/RenderStyleConstants.h: * Source/WebCore/rendering/style/RenderStyleInlines.h: (WebCore::RenderStyle::containIntrinsicHeightHasAuto const): (WebCore::RenderStyle::containIntrinsicWidthHasAuto const): (WebCore::RenderStyle::hasAutoLengthContainIntrinsicSize const): * Source/WebCore/rendering/updating/RenderTreeUpdater.cpp: (WebCore::RenderTreeUpdater::updateElementRenderer): * Source/WebCore/style/StyleBuilderCustom.h: (WebCore::Style::BuilderCustom::applyValueContainIntrinsicWidth): (WebCore::Style::BuilderCustom::applyValueContainIntrinsicHeight): Canonical link: https://commits.webkit.org/265617@main
- Loading branch information
Showing
19 changed files
with
158 additions
and
46 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
...ported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/auto-014-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
PASS Basic usage | ||
|
90 changes: 90 additions & 0 deletions
90
...Tests/imported/w3c/web-platform-tests/css/css-sizing/contain-intrinsic-size/auto-014.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>contain-intrinsic-size: auto none</title> | ||
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> | ||
<link rel="help" href="https://drafts.csswg.org/css-sizing-4/#intrinsic-size-override"> | ||
<meta name="assert" content="Tests that 'contain-intrinsic-size: auto none' respects the auto keyword"> | ||
|
||
<style> | ||
#target { | ||
width: max-content; | ||
height: max-content; | ||
} | ||
.cis-auto { | ||
contain-intrinsic-size: auto none; | ||
} | ||
.skip-contents { | ||
content-visibility: hidden; | ||
} | ||
.size-100-50 { | ||
width: 100px; | ||
height: 50px; | ||
} | ||
.size-75-25 { | ||
width: 75px; | ||
height: 25px; | ||
} | ||
</style> | ||
|
||
<div id="log"></div> | ||
|
||
<div id="parent"> | ||
<div id="target"> | ||
<div id="contents"></div> | ||
</div> | ||
</div> | ||
|
||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script> | ||
const parent = document.getElementById("parent"); | ||
const target = document.getElementById("target"); | ||
const contents = document.getElementById("contents"); | ||
|
||
function checkSize(expectedWidth, expectedHeight, msg) { | ||
assert_equals(target.clientWidth, expectedWidth, msg + " - clientWidth"); | ||
assert_equals(target.clientHeight, expectedHeight, msg + " - clientHeight"); | ||
} | ||
|
||
function nextRendering() { | ||
return new Promise(resolve => { | ||
requestAnimationFrame(() => requestAnimationFrame(() => resolve())); | ||
}); | ||
} | ||
|
||
function cleanup() { | ||
parent.className = ""; | ||
target.className = ""; | ||
contents.className = ""; | ||
checkSize(0, 0, "Sizing after cleanup"); | ||
} | ||
|
||
promise_test(async function() { | ||
this.add_cleanup(cleanup); | ||
target.className = "cis-auto skip-contents"; | ||
contents.classList.add("size-100-50"); | ||
checkSize(0, 0, "Size containment with no last remembered size"); | ||
|
||
target.classList.remove("skip-contents"); | ||
checkSize(100, 50, "Sizing normally"); | ||
|
||
await nextRendering(); | ||
target.classList.add("skip-contents"); | ||
checkSize(100, 50, "Using last remembered size"); | ||
|
||
contents.classList.remove("size-100-50"); | ||
contents.classList.add("size-75-25"); | ||
checkSize(100, 50, "Still using last remembered size"); | ||
|
||
target.classList.remove("skip-contents"); | ||
checkSize(75, 25, "Sizing normally with different size"); | ||
|
||
target.classList.add("skip-contents"); | ||
checkSize(100, 50, "Going back to last remembered size"); | ||
|
||
target.classList.remove("skip-contents"); | ||
await nextRendering(); | ||
target.classList.add("skip-contents"); | ||
checkSize(75, 25, "Using the new last remembered size"); | ||
}, "Basic usage"); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters