mirror of
https://github.com/servo/servo.git
synced 2025-08-23 14:25:33 +01:00
Update web-platform-tests to revision fb898b46adaf656c9807ed0b8adb39d84162cb98
This commit is contained in:
parent
6a4e6174a7
commit
eed68f662b
222 changed files with 12791 additions and 14492 deletions
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-element-getboundingclientrect">
|
||||
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<style>
|
||||
div {
|
||||
font: 10px/1 Ahem;
|
||||
}
|
||||
.inline-block {
|
||||
display: inline-block;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div>
|
||||
<span id="empty"></span>
|
||||
<span class="inline-block"></span>
|
||||
</div>
|
||||
<script>
|
||||
run(document.getElementById('empty'));
|
||||
function run(element) {
|
||||
test(() => {
|
||||
let rect = element.getBoundingClientRect();
|
||||
let cb = element.parentElement;
|
||||
let cb_rect = cb.getBoundingClientRect();
|
||||
assert_equals(rect.y - cb_rect.y, 92, "y");
|
||||
assert_equals(rect.height, 10, "height");
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue