mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision b'ee6da9d71d0268d7fdb04e8e5b26858f46ee0cc4'
This commit is contained in:
parent
4401622eb1
commit
b77ad115f6
16832 changed files with 270819 additions and 87621 deletions
|
@ -0,0 +1,28 @@
|
|||
<!doctype html>
|
||||
<title>CSS Container Queries Test: recompute style inside a @container</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#container-queries">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/cq-testcommon.js"></script>
|
||||
<style>
|
||||
#container { container-type: size; }
|
||||
@container size(min-width: 1px) {
|
||||
#content { color: green; }
|
||||
}
|
||||
</style>
|
||||
<div id="container">
|
||||
<div id="content"></div>
|
||||
</div>
|
||||
<script>
|
||||
setup(() => assert_implements_container_queries());
|
||||
|
||||
test(() => {
|
||||
assert_equals(getComputedStyle(content).color, "rgb(0, 128, 0)");
|
||||
|
||||
// Dirty style of an element inside the container:
|
||||
content.style.backgroundColor = "lime";
|
||||
|
||||
// The container query should still evaluate correctly:
|
||||
assert_equals(getComputedStyle(content).color, 'rgb(0, 128, 0)');
|
||||
}, "Basic test for container query evaluation stability");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue