Ticket #11111: emptyOffsetWidth.html

File emptyOffsetWidth.html, 448 bytes (added by Olek Nowodziński, 10 years ago)

Sample to reproduce the issue without editor

Line 
1<!DOCTYPE html>
2<html lang="en">
3        <head>
4                <meta charset="utf-8">
5                <title>Empty element offsetWidth bug</title>
6        </head>
7        <body>
8                <p>bold1 <i><b id="bold1"></b>x</i></p>
9                <p>bold3 <b id="bold2"></b></p>
10
11                <script type="text/javascript">
12
13                        var bold1 = document.getElementById( 'bold1' );
14                        var bold2 = document.getElementById( 'bold2' );
15
16                        console.log( bold1.offsetWidth );
17                        console.log( bold2.offsetWidth );
18
19                </script>
20        </body>
21</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy