Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -1,6 +0,0 @@
<!DOCTYPE html>
<style>
input { background-color: rgb(0, 100, 0); }
</style>
<input value="text">
<p>PASS if the input field has a dark green background</p>

View file

@ -1,19 +0,0 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1086732">
<link rel="match" href="appearance-transition-ref.html">
<style>
input {
background-color: rgb(0, 0, 0);
transition: background-color 1e10s steps(2, start);
}
.bg200 {
background-color: rgb(0, 200, 0);
}
</style>
<input value="text" id=input>
<script>
document.documentElement.offsetTop;
input.classList.toggle('bg200');
</script>
<p>PASS if the input field has a dark green background</p>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - button</title>
<style>
#container { width: 500px; }
button {
appearance: none;
}
</style>
<div id="container">
<button>button</button>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - checkbox-input</title>
<style>
#container { width: 500px; }
</style>
<div id="container">
<input type="checkbox">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - color-input</title>
<style>
#container { width: 500px; }
input[type=color] {
appearance: none;
}
</style>
<div id="container">
<input type="color">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-button</title>
<style>
#container { width: 500px; }
input[type=button] {
appearance: none;
}
</style>
<div id="container">
<input type="button" value="input-button">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-reset</title>
<style>
#container { width: 500px; }
input[type=reset] {
appearance: none;
}
</style>
<div id="container">
<input type="reset" value="input-reset">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-search</title>
<style>
#container { width: 500px; }
input[type=search] {
appearance: none;
}
</style>
<div id="container">
<input type="search" value="input-search">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-search-text</title>
<style>
#container { width: 500px; }
input[type=search] {
appearance: none;
}
</style>
<div id="container">
<input id="search-text-input" type="search" value="input-search-text">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-submit</title>
<style>
#container { width: 500px; }
input[type=submit] {
appearance: none;
}
</style>
<div id="container">
<input type="submit" value="input-submit">
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - input-text</title>
<style>
#container { width: 500px; }
input[type=text] {
appearance: none;
}
</style>
<div id="container">
<input type="text" value="input-text">
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - link</title>
<style>
#container { width: 500px; }
</style>
<div id="container">
<a>a</a>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - meter</title>
<style>
#container { width: 500px; }
meter {
appearance: none;
}
</style>
<div id="container">
<meter value=0.5></meter>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback</title>
<style>
#container { width: 500px; }
progress {
appearance: none;
}
</style>
<div id="container">
<progress value=0.5></progress>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - radio-input</title>
<style>
#container { width: 500px; }
</style>
<div id="container">
<input type="radio">
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - range</title>
<style>
#container { width: 500px; }
</style>
<div id="container">
<input type="range">
</div>

View file

@ -1,44 +0,0 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback</title>
<style>
#container { width: 500px; }
button,
input[type=button],
input[type=submit],
input[type=reset],
input[type=text],
input[type=search],
textarea,
input[type=color],
#select-listbox,
meter,
progress {
appearance: none;
}
#select-dropdown-box,
#select-menulist-button { appearance: none; appearance: menulist-button; }
</style>
<div id="container">
<a>a</a>
<button>button</button>
<input type="button" value="input-button">
<input type="submit" value="input-submit">
<input type="reset" value="input-reset">
<input type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input type="search" value="input-search">
<input type="range">
<input type="checkbox">
<input type="radio">
<input type="color">
<textarea>textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter value=0.5></meter>
<progress value=0.5></progress>
</div>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - select-dropdown-box</title>
<style>
#container { width: 500px; }
#select-dropdown-box { appearance: none; appearance: menulist-button; }
</style>
<div id="container">
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - select-listbox</title>
<style>
#container { width: 500px; }
#select-listbox {
appearance: none;
}
</style>
<div id="container">
<select multiple id="select-listbox"><option>select-listbox</option></select>
</div>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - select-menulist-button</title>
<style>
#container { width: 500px; }
#select-menulist-button { appearance: none; appearance: menulist-button; }
</style>
<div id="container">
<select id="select-menulist-button"><option>select-menulist-button</option></select>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: Compute kind of widget - fallback - textarea</title>
<style>
#container { width: 500px; }
textarea {
appearance: none;
}
</style>
<div id="container">
<textarea>textarea</textarea>
</div>

View file

@ -1,47 +0,0 @@
<!-- 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-attachment disables native appearance for widgets</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-attachment.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-attachment";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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 widgets</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-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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>

View file

@ -1,47 +0,0 @@
<!-- 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-color disables native appearance for widgets</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-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-image disables native appearance for widgets</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-image.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-image";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-origin disables native appearance for widgets</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-origin.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-origin";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-position disables native appearance for widgets</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-position.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-position";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-size disables native appearance for widgets</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-size.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-size";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-end-color disables native appearance for widgets</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-block-end-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-end-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-end-style disables native appearance for widgets</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-block-end-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-end-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-end-width disables native appearance for widgets</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-block-end-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-end-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-start-color disables native appearance for widgets</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-block-start-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-start-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-start-style disables native appearance for widgets</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-block-start-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-start-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-block-start-width disables native appearance for widgets</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-block-start-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-block-start-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-bottom-color disables native appearance for widgets</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-bottom-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-bottom-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-bottom-left-radius disables native appearance for widgets</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-bottom-left-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-bottom-left-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-bottom-right-radius disables native appearance for widgets</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-bottom-right-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-bottom-right-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-bottom-style disables native appearance for widgets</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-bottom-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-bottom-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-bottom-width disables native appearance for widgets</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-bottom-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-bottom-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-end-end-radius disables native appearance for widgets</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-end-end-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-end-end-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-outset disables native appearance for widgets</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-outset.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-outset";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-repeat disables native appearance for widgets</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-repeat.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-repeat";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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 widgets</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-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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>

View file

@ -1,47 +0,0 @@
<!-- 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-source disables native appearance for widgets</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-source.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-source";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-width disables native appearance for widgets</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-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-end-color disables native appearance for widgets</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-inline-end-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-end-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-end-style disables native appearance for widgets</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-inline-end-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-end-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-end-width disables native appearance for widgets</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-inline-end-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-end-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-start-color disables native appearance for widgets</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-inline-start-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-start-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-start-style disables native appearance for widgets</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-inline-start-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-start-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-inline-start-width disables native appearance for widgets</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-inline-start-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-inline-start-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-left-color disables native appearance for widgets</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-left-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-left-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-left-style disables native appearance for widgets</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-left-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-left-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-left-width disables native appearance for widgets</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-left-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-left-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-right-color disables native appearance for widgets</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-right-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-right-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-right-style disables native appearance for widgets</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-right-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-right-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-right-width disables native appearance for widgets</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-right-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-right-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-start-end-radius disables native appearance for widgets</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-start-end-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-start-end-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-start-start-radius disables native appearance for widgets</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-start-start-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-start-start-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-top-color disables native appearance for widgets</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-top-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-top-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-top-left-radius disables native appearance for widgets</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-top-left-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-top-left-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-top-right-radius disables native appearance for widgets</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-top-right-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-top-right-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-top-style disables native appearance for widgets</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-top-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-top-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -1,47 +0,0 @@
<!-- 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-top-width disables native appearance for widgets</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-top-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<a>a</a>
<button id="button">button</button>
<input id="button-input" type="button" value="input-button">
<input id="submit-input" type="submit" value="input-submit">
<input id="reset-input" type="reset" value="input-reset">
<input id="text-input" type="text" value="input-text">
<input id="search-text-input" type="search" value="input-search-text">
<input id="search-input" type="search" value="input-search">
<input id="range-input" type="range">
<input id="checkbox-input" type="checkbox">
<input id="radio-input" type="radio">
<input id="color-input" type="color">
<textarea id="textarea">textarea</textarea>
<select multiple id="select-listbox"><option>select-listbox</option></select>
<select id="select-dropdown-box"><option>select-dropdown-box</option></select>
<select id="select-menulist-button"><option>select-menulist-button</option></select>
<meter id="meter" value=0.5></meter>
<progress id="progress" value=0.5></progress>
</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-top-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-attachment disables native appearance for 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 background-attachment.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-attachment";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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 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 background-clip.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-clip";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-color disables native appearance for 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 background-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-image disables native appearance for 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 background-image.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-image";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-origin disables native appearance for 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 background-origin.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-origin";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-position disables native appearance for 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 background-position.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-position";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-size disables native appearance for 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 background-size.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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 = "background-size";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-end-color disables native appearance for 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-block-end-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-end-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-end-style disables native appearance for 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-block-end-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-end-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-end-width disables native appearance for 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-block-end-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-end-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-start-color disables native appearance for 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-block-start-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-start-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-start-style disables native appearance for 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-block-start-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-start-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-block-start-width disables native appearance for 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-block-start-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-block-start-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-bottom-color disables native appearance for 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-bottom-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-bottom-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-bottom-left-radius disables native appearance for 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-bottom-left-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-bottom-left-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-bottom-right-radius disables native appearance for 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-bottom-right-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-bottom-right-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-bottom-style disables native appearance for 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-bottom-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-bottom-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-bottom-width disables native appearance for 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-bottom-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-bottom-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-end-end-radius disables native appearance for 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-end-end-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-end-end-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-end-start-radius disables native appearance for 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-end-start-radius.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-end-start-radius";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-outset disables native appearance for 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-outset.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-outset";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-repeat disables native appearance for 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-repeat.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-repeat";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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 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-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">
<button id="button">button</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>

View file

@ -0,0 +1,27 @@
<!-- 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-source disables native appearance for 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-source.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-source";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-width disables native appearance for 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-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-end-color disables native appearance for 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-inline-end-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-end-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-end-style disables native appearance for 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-inline-end-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-end-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-end-width disables native appearance for 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-inline-end-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-end-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-start-color disables native appearance for 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-inline-start-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-start-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-start-style disables native appearance for 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-inline-start-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-start-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-inline-start-width disables native appearance for 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-inline-start-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-inline-start-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-left-color disables native appearance for 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-left-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-left-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-left-style disables native appearance for 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-left-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-left-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-left-width disables native appearance for 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-left-width.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-left-width";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-right-color disables native appearance for 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-right-color.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-right-color";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

View file

@ -0,0 +1,27 @@
<!-- 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-right-style disables native appearance for 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-right-style.">
<link rel="match" href="../compute-kind-widget-fallback-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">
<button id="button">button</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-right-style";
for (const el of elements) {
el.style.setProperty(prop, getComputedStyle(el).getPropertyValue(prop));
}
</script>

Some files were not shown because too many files have changed in this diff Show more