summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/table-cell-before-content.html
blob: 5789bc74a4fe53c30364133fa29ea3c7a1b37e5a (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 PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test Case</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">

<style type="text/css">
.error:before {
    content: "You should just see a single line";
    display: table-cell;
}

.error:after {
    content: "of blue text.";
    display: table-cell;
}

</style>
</head>
<body>
<div class="error"><div style="display:table-cell">&nbsp;</div></div>
<script>
document.body.offsetLeft;
document.body.style.color = 'blue';
</script>
</body>
</html>