mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Update web-platform-tests to revision e51f414776c4e7efa7cfa5fe63a3a8b3969e06ac
This commit is contained in:
parent
ed392ab3be
commit
db4f300c7c
7956 changed files with 92483 additions and 78520 deletions
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Computed float value of flex/grid items</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-containers">
|
||||
<meta name="assert" content="computed float value of flex/grid items should be as specified">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
|
||||
<div style="display:flex;">
|
||||
<div id="flex-item" style="float:left;"></div>
|
||||
</div>
|
||||
<div style="display:grid;">
|
||||
<div id="grid-item" style="float:right;"></div>
|
||||
</div>
|
||||
<script>
|
||||
function getFloatFor(id) {
|
||||
return window.getComputedStyle(document.getElementById(id)).getPropertyValue("float");
|
||||
}
|
||||
test(function() {
|
||||
assert_equals(getFloatFor("flex-item"), "left");
|
||||
assert_equals(getFloatFor("grid-item"), "right");
|
||||
}, "computed style for float");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue