blob: e3d1eab759696630c103cea6d348ec80a2a07bdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<style>
.a {
display: table-cell;
white-space: nowrap;
}
.b {
padding-left: 4px;
white-space: pre-wrap;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div class='a'>
<span class='b'>PASS,</span>
<span>
<span>does not crash</span>
<span class='b'></span>
</span>
</div>
</body>
</html>
|