1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<!doctype html>
<title>@container: originating element container for pseudo elements</title>
<link rel="help" href="https://drafts.csswg.org/css-conditional-5/#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: inline-size; }
#target { display: list-item; }
#target::before { content: "PASS"; font-size: 10cqw; }
#target::after { font-size: 10cqw; }
#target::marker { font-size: 10cqw; }
#target::first-line { font-size: 10cqw; }
#target::first-letter { font-size: 10cqw; }
#target::highlight(foo) {
text-decoration-line: underline;
text-decoration-thickness: 10cqw;
}
#outer::first-line { font-size: 10cqw; }
#outer::first-letter { font-size: 10cqw; }
dialog::backdrop { font-size: 10cqw; }
</style>
<div style="width: 400px" class="container">
<div style="width: 300px" class="container">
<div id="target" class="container" style="width: 200px">First-line</div>
<dialog id="dialog" class="container" style="width: 100px"></dialog>
</div>
<div style="width: 400px" class="container">
<div id="outer" style="width: 300px" class="container">
<div class="container" style="width: 200px">First-line</div>
</div>
</div>
<script>
setup(() => assert_implements_size_container_queries());
test(() => {
assert_equals(getComputedStyle(target, "::before").fontSize, "20px");
}, "Originating element container for ::before");
test(() => {
assert_equals(getComputedStyle(target, "::after").fontSize, "20px");
}, "Originating element container for ::after");
test(() => {
assert_equals(getComputedStyle(target, "::marker").fontSize, "20px");
}, "Originating element container for ::marker");
test(() => {
assert_equals(getComputedStyle(target, "::first-line").fontSize, "20px");
}, "Originating element container for ::first-line");
test(() => {
assert_equals(getComputedStyle(target, "::first-letter").fontSize, "20px");
}, "Originating element container for ::first-letter");
test(() => {
assert_equals(getComputedStyle(target, "::highlight(foo)").textDecorationThickness, "20px");
}, `Originating element container for ::highlight`);
test(() => {
assert_equals(getComputedStyle(outer, "::first-line").fontSize, "30px");
}, "Originating element container for outer ::first-line");
test(() => {
assert_equals(getComputedStyle(outer, "::first-letter").fontSize, "30px");
}, "Originating element container for outer ::first-letter");
test((t) => {
t.add_cleanup(() => dialog.close());
assert_equals(getComputedStyle(dialog, "::backdrop").fontSize, "30px", "::backdrop not rendered");
dialog.showModal();
assert_equals(getComputedStyle(dialog, "::backdrop").fontSize, "10px", "::backdrop rendered");
}, "Originating element container for ::backdrop");
</script>
|