summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-size-select-002.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-contain/contain-size-select-002.html')
-rw-r--r--testing/web-platform/tests/css/css-contain/contain-size-select-002.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-size-select-002.html b/testing/web-platform/tests/css/css-contain/contain-size-select-002.html
new file mode 100644
index 0000000000..3fdea55047
--- /dev/null
+++ b/testing/web-platform/tests/css/css-contain/contain-size-select-002.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<meta charset="utf-8">
+<title>CSS Containment Test: Size containment on select</title>
+<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
+<link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-size">
+<link rel="match" href="reference/contain-size-select-001-ref.html">
+<meta name=assert content="Check that setting 'contain: size' on a <select> elements causes it to be sized as having no contents.">
+<style>
+select {
+ color: transparent;
+ background: white;
+}
+</style>
+<p>Test passes if it has the same output than the reference.</p>
+<select id="target">
+ <option>AVeryLongOption</option>
+ <option>Another Option</option>
+</select>
+<script>
+ window.requestAnimationFrame( () => {
+ target.style.contain = "size";
+ document.documentElement.removeAttribute("class");
+ });
+</script>
+</html>