summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/dialog/modal-dialog-in-table-column.html
blob: 814c35375b3dce9427c653d97b6cb8baf2d508d3 (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
<!DOCTYPE html>
<html>
<head>
<style>
dialog {
    background: green;
    border-color: green;
}
div {
    display: table-column;
}
</style>
</head>
<body>
<p>Bug <a href="http://webkit.org/b/103477">103477</a>: Make
NodeRenderingContext::parentRenderer and nextRenderer top layer aware
<p>The test passes if you see a green rectangle in the center of the viewport.
<div>
<dialog id="dialog"></dialog>
</div>
<script>
document.getElementById('dialog').showModal();
</script>
</body>
</html>