mirror of
https://github.com/servo/servo.git
synced 2025-08-08 15:05:35 +01:00
Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'
This commit is contained in:
parent
ace9b32b1c
commit
df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions
|
@ -0,0 +1,35 @@
|
|||
<!doctype html>
|
||||
<title>CSS Container Queries Test: font-relative calc - dynamic</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#size-container">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="support/cq-testcommon.js"></script>
|
||||
<style>
|
||||
body { font-size: 10px; }
|
||||
body.larger { font-size: 20px; }
|
||||
#container {
|
||||
container-type: inline-size;
|
||||
width: 100px;
|
||||
color: red;
|
||||
}
|
||||
#intermediate {
|
||||
font-size: 8px;
|
||||
}
|
||||
@container (width: calc(1em + 80px)) {
|
||||
#target { color: green; }
|
||||
}
|
||||
</style>
|
||||
<div id="container">
|
||||
<div id=intermediate>
|
||||
<div id="target"></div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
setup(() => assert_implements_container_queries());
|
||||
|
||||
test(() => {
|
||||
assert_equals(getComputedStyle(target).color, 'rgb(255, 0, 0)');
|
||||
document.body.className = 'larger';
|
||||
assert_equals(getComputedStyle(target).color, 'rgb(0, 128, 0)');
|
||||
}, 'font-relative calc() is responsive to container font-size changes');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue