repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
inline
/
inline-body-with-inline-child.html
blob
69d75d1b99d743dd71d68df1a8d016fb6a81ee05
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
body {
6
display: inline;
7
height:
1
%;
8
}
9
</style>
10
</head>
11
<body>
12
<p>
13
Test passes if it does not crash.
14
</p>
15
<script>
16
if
(
window
.
testRunner
)
17
testRunner
.
dumpAsText
()
18
19
var
div
=
document
.
createElement
(
"div"
);
20
document
.
body
.
appendChild
(
div
);
21
div
.
offsetWidth
;
22
div
.
style
.
display
=
'inline'
;
23
div
.
offsetWidth
;
24
</script>
25
</body>
26
</html>