layout/reftests/bugs/301726-1.html

branch
TOR_BUG_9701
changeset 3
141e0f1194b1
equal deleted inserted replaced
-1:000000000000 0:3c34b442446f
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;
11 }
12 #inner_box {
13 width: 200%;
14 height: 100%;
15 overflow: auto;
16 }
17 #dummy_content {
18 height: 101px;
19 background: yellow;
20 }
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>

mercurial