Name Description Size
appearance-build-webkit-reftests.py <!-- DO NOT EDIT THIS FILE. Edit the appearance-* file instead and then run: ./tools/appearance-build-webkit-reftests.py --> 956
build-compute-kind-widget-fallback-props.py <!-- 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: {props} maybe disables native appearance for {el_id}</title> <link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-disabling-properties"> <link rel="help" href="https://html.spec.whatwg.org/#widgets"> <meta name="assert" content="appropriate widget is used when props includes {props}."> <link rel="match" href="../compute-kind-widget-fallback-{el_id}-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"> {el_markup} </div> <script> // Set author-level CSS that matches UA style, but don't use the 'revert' value. const elements = document.querySelectorAll('#container > *'); const props = "{props}".split(","); for (const el of elements) {{ for (const prop of props) {{ el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop)); }} }} </script> 5155