Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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-x: scroll;
11 overflow-y: hidden;
12 }
13 #inner_box {
14 width: 200%;
15 height: 100%;
16 overflow: auto;
17 }
18 #dummy_content {
19 height: 101px;
20 background: yellow;
21 }
22 </style>
23 </head>
24 <body>
25 <div id="outer_box">
26 <div id="inner_box">
27 <div id="dummy_content">
28
29 </div>
30 </div>
31 </div>
32 </body>
33 </html>