Files
sousa-gecko/testing/web-platform/tests/custom-elements/pseudo-class-defined-print.html
T
Blink WPT Bot 0e244f205a Bug 1957461 [wpt PR 51723] - Update tests for print-color-adjust., a=testonly
Automatic update from web-platform-tests
Update tests for print-color-adjust. (#51723)

Specify `print-color-adjust:exact` in tests that test background
printing.

This is in preparation for disabling backgrounds by default when
WPT-printing (just like browsers do), so that
`print-color-adjust:economy` (the initial value) can be tested at all.

See crrev.com/c/6408671

Bug: 376381169
Change-Id: Ibddb01164e86c0f3bcc4fcdb2a7cba40a1a8c718
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6408631
Reviewed-by: Chris Harrelson <chrishtr@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1440518}

Co-authored-by: Morten Stenshorne <mstensho@chromium.org>
--

wpt-commits: b5ded362cc5e3e5a25415def9cb67cafb64d35e5
wpt-pr: 51723
2025-04-07 12:29:05 +00:00

21 lines
428 B
HTML

<!doctype html>
<link rel="match" href="pseudo-class-defined-print-ref.html">
<style>
:root {
print-color-adjust: exact;
}
custom-element {
display: block;
width: 100px;
height: 100px;
background: green;
}
custom-element:not(:defined) {
background: red;
}
</style>
<custom-element></custom-element>
<script>
customElements.define("custom-element", class extends HTMLElement { });
</script>