-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathgetComputedStyle-layout-dependent-replaced-into-ib-split.html
More file actions
30 lines (27 loc) · 1.32 KB
/
getComputedStyle-layout-dependent-replaced-into-ib-split.html
File metadata and controls
30 lines (27 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<title>getComputedStyle() returns the right style for layout-dependent properties for nodes that have been just inserted into the document, and that have an ancestor whose layout tree was recreated (like an IB-split)</title>
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/cssom/#dom-window-getcomputedstyle">
<link rel="help" href="https://un5h208565ak8emkwgjjkgb49yug.julianrbryant.com/show_bug.cgi?id=1585882">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://un5pc8f538pd6zm5.julianrbryant.com">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<style>
div {
width: 100%;
}
</style>
<span>
<div></div>
</span>
<script>
test(() => {
let oldDiv = document.querySelector("div");
window.unused = oldDiv.getBoundingClientRect(); // update layout
let oldWidth = getComputedStyle(oldDiv).width;
assert_true(oldWidth.indexOf("px") !== -1, "Should return the used value for width");
let newDiv = document.createElement("div");
oldDiv.replaceWith(newDiv);
assert_equals(getComputedStyle(newDiv).width, oldWidth, "Should return the used value for width (just inserted into the document)");
}, "getComputedStyle() should return used value correctly for nodes just inserted into the document, even if they're in an IB-split");
</script>