mirror of
https://github.com/servo/servo.git
synced 2025-07-19 13:23:46 +01:00
27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!-- DO NOT EDIT. This file has been generated. Source:
|
|
./tools/build-compute-kind-widget-fallback-props.py
|
|
-->
|
|
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Basic User Interface Test: Compute kind of widget: background-clip disables native appearance for input-search</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#computing-kind-widget">
|
|
<meta name="assert" content="appropriate widget is returned when authorProps includes background-clip.">
|
|
<link rel="match" href="../compute-kind-widget-fallback-input-search-ref.html">
|
|
<style>
|
|
#container { width: 500px; }
|
|
#container > #search-text-input { appearance: textfield; }
|
|
#container > #select-menulist-button { appearance: none; appearance: menulist-button; }
|
|
</style>
|
|
|
|
<div id="container">
|
|
<input id="search-input" type="search" value="input-search">
|
|
</div>
|
|
|
|
<script>
|
|
// Set author-level CSS that matches UA style, but don't use the 'revert' value.
|
|
const elements = document.querySelectorAll('#container > *');
|
|
const prop = "background-clip";
|
|
for (const el of elements) {
|
|
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
|
|
}
|
|
</script>
|