Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/getcomputedstyle/flexbox_computedstyle_flex-shorthand-initial.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>flexbox | computed style | flex: initial</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name="flags" content="dom">
<style>
body {
color: red;
flex: initial;
}
</style>
<div id="log"></div>
<script>
test(function() {
var body = document.body;
assert_equals(getComputedStyle(body).getPropertyValue("flex-grow"),
"0");
assert_equals(getComputedStyle(body).getPropertyValue("flex-shrink"),
"1");
assert_equals(getComputedStyle(body).getPropertyValue("flex-basis"),
"auto");
});
</script>