-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Closed
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentC-assignedThere is someone working on resolving the issueThere is someone working on resolving the issueI-wrongAn incorrect behaviour is observed.An incorrect behaviour is observed.
Description
offsetWidth obtained by script is 0.
For example, this html page prints 0 to the console.
<!DOCTYPE html>
<html lang="en">
<body>
<div id="main">
<span id="span1">Test</span>
</div>
<script>
console.log(document.getElementById("span1").offsetWidth);
</script>
</body>
</html>I used Servo commit 9415252 on Ubuntu 16.04.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentC-assignedThere is someone working on resolving the issueThere is someone working on resolving the issueI-wrongAn incorrect behaviour is observed.An incorrect behaviour is observed.