Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / negative-right-pos.html
blob0d1a74c1eb0546ca18dfe6563d617ab3d59f8eb1
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>
5 Reduced test case for bug 10719
6 </title>
7 </head>
8 <style type="text/css">
9 <!--
10 #wrapper {
11 position:relative;
13 width:300px;
14 height:400px;
15 background: red;
18 #inner {
19 overflow: hidden;
20 position: absolute;
21 right: -150px;
23 width: 200px;
24 height: 400px;
25 background: green;
27 -->
28 </style>
29 <body>
30 If you see any red below the test has failed.
31 <div id="wrapper">
32 <div id="inner">
33 </div>
34 <table align="left" width="250" cellpadding=0 cellspacing=0 height=400 bgcolor=green>
35 <tbody>
36 <tr>
37 <td>
38 </td>
39 </tr>
40 </tbody>
41 </table>
42 </div>
43 </body>
44 </html>