blob: dab1c1c6f26c1ca69601edb563b80fa77401fc54 [file] [log] [blame]
<!DOCTYPE html>
<title>flexbox | computed style | order: -1</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#order-property">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name="flags" content="dom">
<style>
html {
order: 666;
}
body {
color: red;
order: inherit;
}
</style>
<div id="log"></div>
<script>
test(function() {
var body = document.body;
assert_equals(getComputedStyle(body).getPropertyValue("order"),
"666");
});
</script>