mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
279 B
HTML
13 lines
279 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#i { display: inline; border: 2px solid; }
|
|
#i::after { display: block; content: "Three"; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="i"><script>document.body.offsetWidth</script>One<div>Two</div></div>
|
|
</body>
|
|
</html>
|