aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html')
-rw-r--r--tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html b/tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html
new file mode 100644
index 00000000000..66b27ea686e
--- /dev/null
+++ b/tests/wpt/tests/html/semantics/forms/the-select-element/customizable-select/select-appearance-sizing-in-flex-ref.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+<title>Test of sizing customizable select inside of flex</title>
+<link rel=author href="mailto:dbaron@chromium.org">
+
+<style>
+ .container > * {
+ display: inline-block;
+ vertical-align: top;
+ white-space: nowrap;
+ }
+
+ select {
+ appearance: base-select;
+ }
+</style>
+
+<div class="container">
+ <select>
+ <option>First Option</option>
+ <option>Second Option</option>
+ </select
+ ><div class="after">The content after the select.</div>
+</div>