mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 19:47:17 +02:00
LibWeb: Implement CSS 'contain' property
This commit is contained in:
Notes:
github-actions[bot]
2025-01-28 11:25:39 +00:00
Author: https://github.com/Psychpsyo Commit: https://github.com/LadybirdBrowser/ladybird/commit/67ed6768313 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3296 Reviewed-by: https://github.com/AtkinsSJ ✅
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<title>CSS Overflow and Transforms: css-overflow-3</title>
|
||||
<link rel="author" href="mailto:atotic@google.com">
|
||||
<script src="../../resources/testharness.js"></script>
|
||||
<script src="../../resources/testharnessreport.js"></script>
|
||||
<link rel="help" href="https://crbug.com/964924">
|
||||
<meta name="assert" content="chrome does not crash with css contain edge case">
|
||||
<style>
|
||||
* {
|
||||
contain: size layout;
|
||||
}
|
||||
html {
|
||||
outline-style: auto;
|
||||
margin-bottom: 39%;
|
||||
}
|
||||
#target {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
</style>
|
||||
<output id="target">text</output>
|
||||
<script>
|
||||
test(() => {
|
||||
document.body.offsetTop;
|
||||
document.querySelector("#target").value = "";
|
||||
document.body.offsetTop;
|
||||
assert_equals(document.querySelector("#target").value, "");
|
||||
}, 'chrome does not crash with contain');
|
||||
</script>
|
||||
Reference in New Issue
Block a user