blob: cd097b1949d54fd9d0048d67a93ade80eccd3a93 [file] [log] [blame]
<!DOCTYPE html>
<title>flexbox | computed style | order: integer</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>
body {
color: red;
order: 5;
}
</style>
<div id="log"></div>
<script>
test(function() {
var body = document.body;
assert_equals(getComputedStyle(body).getPropertyValue("order"),
"5");
});
</script>