summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html b/testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html
new file mode 100644
index 0000000000..234ecd4e84
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/select-element-zero-height-002-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<title>Reference: Select element with background color in flexbox with zero height</title>
+<link rel="author" title="Mozilla" href="https://mozilla.org">
+<style>
+ .container {
+ height: 0px;
+ border: 1px dotted black;
+ }
+ .with-background {
+ width: 100%;
+ background: lime;
+ }
+ select {
+ /*
+ WebKit applies intrinsic (default) margins to control elements in some circumstances,
+ let's disable them to avoid mismatch errors caused by those margins.
+ */
+ margin: 0;
+ }
+</style>
+<body>
+ <div class="container">
+ <select class="with-background"><option>Hi</option></select>
+ </div>
+</body>