mirror of
https://github.com/servo/servo.git
synced 2025-08-14 18:05:36 +01:00
Update web-platform-tests to revision 9817f7f027fe1e92cc2fce31d6002c4d669918e8
This commit is contained in:
parent
8e52f8a523
commit
f3533538ea
2144 changed files with 21364 additions and 11001 deletions
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Flexible Box Test: computed style for auto minimum size</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org" />
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto" />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<style>
|
||||
.flex { display: flex }
|
||||
.none { display: none }
|
||||
.min-wh {
|
||||
min-width: auto;
|
||||
min-height: auto;
|
||||
}
|
||||
.contents { display: contents }
|
||||
</style>
|
||||
<div class="flex">
|
||||
<div class="min-wh"></div>
|
||||
</div>
|
||||
<div class="none">
|
||||
<div class="flex">
|
||||
<div class="min-wh"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<div class="contents">
|
||||
<div class="min-wh"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<div class="min-wh none"></div>
|
||||
</div>
|
||||
<script>
|
||||
const tests = [
|
||||
{ description: "Computed min-width/min-height of specified auto for flex item.", computed: "auto" },
|
||||
{ description: "Computed min-width/min-height of specified auto inside display:none which would otherwise have been a flex item.", computed: "0px" },
|
||||
{ description: "Computed min-width/min-height of specified auto for flex item inside display:contents.", computed: "auto" },
|
||||
{ description: "Computed min-width/min-height of specified auto with display:none which would otherwise have been a flex item.", computed: "0px" }
|
||||
];
|
||||
|
||||
const testElements = document.querySelectorAll(".min-wh");
|
||||
let testNo = 0;
|
||||
for (let testElement of testElements) {
|
||||
test(() => {
|
||||
assert_equals(getComputedStyle(testElement).minWidth, tests[testNo].computed);
|
||||
assert_equals(getComputedStyle(testElement).minHeight, tests[testNo].computed);
|
||||
}, tests[testNo].description);
|
||||
testNo++;
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue