Damn it. It *is* possible, but I don't understand the exact conditions under which it can occur. `data:text/html,<div id="container"><p>1</p><p id="p2" hidden>2</p><p id="p3">3</p></div><button onclick="p2.hidden = false;">Show</button>` When you press the "Show" button, the bounds for p3 get updated correctly, but the bounds for the button do not.
Bug 1811972 Comment 3 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Damn it. It *is* possible, but I don't understand the exact conditions under which it can occur. `data:text/html,<div id="container"><p>1</p><p id="p2" hidden>2</p><p id="p3">3</p></div><button onclick="p2.hidden = false;">Show</button>` When you press the "Show" button, the bounds for p3 get updated correctly, but the bounds for the button do not. I would have thought either everything would update or nothing, but p3 does update correctly.