Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 301726-1.html
blobb9d492d9cd3ef901d5916f17141ccc1673d3b930
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>Overflow: Auto / Cascaded Boxes / Scrollbar Rendering Testcase</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 <style type="text/css">
7 #outer_box {
8 width: 400px;
9 height: 100px;
10 overflow: auto;
12 #inner_box {
13 width: 200%;
14 height: 100%;
15 overflow: auto;
17 #dummy_content {
18 height: 101px;
19 background: yellow;
21 </style>
22 </head>
23 <body>
24 <div id="outer_box">
25 <div id="inner_box">
26 <div id="dummy_content">
27 &nbsp;
28 </div>
29 </div>
30 </div>
31 </body>
32 </html>