summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/table-cell-before-after-content-around-table.html
blob: 0e5ba603808be94f2d5dd1525c00e2b658323d97 (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
<!DOCTYPE html>
<!-- Test passes if you see three blue boxes in three seperate rows. -->
<html style="font: 1em/1 Ahem, sans-serif;">
<style type="text/css">
.container:before {
    content: "ABCD";
    display: table-cell;
}

.container:after {
    content: "EFGH";
    display: table-cell;
}

</style>
</head>
<script src="../../resources/ahem.js"></script>
<body>
<div class="container">
<div style="display: table">1234</div>
</div>
<script>
document.body.offsetTop;
document.body.style.color = 'blue';
</script>
</body>
</html>