haikuwebkit/LayoutTests/fast/repaint/fixed-table-cell-expected.html

17 lines
621 B
HTML

<html>
<head>
<link rel="stylesheet" href="resources/default.css">
<style>
table { top: 0px; left: 0px; border-spacing: 50px; position: absolute; }
td { background: green; padding: 0px; border-style: none; border: 0px; }
</style>
</head>
<body>
<!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderLayer fixed position logic needs more basic testing -->
<!-- You should see no red on this page. -->
<table style="position: fixed; top: -100px;">
<tr><td></td><td></td></tr>
<tr><td></td><td style="background: white"></td></tr>
</body>
</html>