forked from mirrors/gecko-dev
		
	 b58fdb143c
			
		
	
	
		b58fdb143c
		
	
	
	
	
		
			
			Automatic update from web-platform-tests [css-ui] Split generated compute-kind-of-widget tests See https://github.com/web-platform-tests/wpt/issues/33401#issuecomment-1082836262 -- wpt-commits: 60d680ba69b597b87c606065c01b0709e8ef3971 wpt-pr: 33421
		
			
				
	
	
		
			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: border-image-slice disables native appearance for input-button</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 border-image-slice.">
 | |
| <link rel="match" href="../compute-kind-widget-fallback-input-button-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="button-input" type="button" value="input-button">
 | |
| </div>
 | |
| 
 | |
| <script>
 | |
| // Set author-level CSS that matches UA style, but don't use the 'revert' value.
 | |
| const elements = document.querySelectorAll('#container > *');
 | |
| const prop = "border-image-slice";
 | |
| for (const el of elements) {
 | |
|   el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
 | |
| }
 | |
| </script>
 |