blob: 6a58083e358b33743b31e5eb55d7f97f82025639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=950209">
<link rel="author" title="Koji Ishii" href="kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
div {
white-space: nowrap;
width: 3ch;
}
</style>
<body>
<div>12345<wbr> 678</div>
<script>
test(() => {
document.body.offsetTop;
});
</script>
</body>
|