git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Bidi-Isolate inlines break layout with collapsed whitespace
[WebKit-https.git]
/
LayoutTests
/
fast
/
text
/
bidi-isolate-whitespace-collapse-expected.html
1
<!DOCTYPE html>
2
<html>
3
<style>
4
body > div {
5
display: inline-block;
6
border: 1px solid black;
7
width: 400px;
8
font-size: 30px;
9
}
10
</style>
11
<body>
12
<p>This test makes sure that whitespace collapsing occurs correctly in the presence of bidi isolates.</p>
13
<div id="control">
14
<p>123
15
<span>456</span> 789</p>
16
<p>123 <span>456</span> 789</p>
17
<p>123
18
<span>4 56
19
</span> 789</p>
20
<p>123
21
<span>
22
456
23
</span>
24
789</p>
25
<p>1 2 3
26
<span>
27
4 5 6
28
</span>
29
7 8 9 </p>
30
<p>123
31
<span></span> 789</p>
32
<p>123
33
<span> </span> 789</p>
34
</div>
35
</body></html>