mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 3840f46213d9a991acc9288e3863530f7502c05e
This commit is contained in:
parent
347d8bdf72
commit
141ba90a6d
58 changed files with 1507 additions and 883 deletions
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<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: white;
|
||||
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";
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue