blob: 5a80c4a672212a7d8e4c04b623b73ee6438508fc [file] [log] [blame]
dbates@webkit.org94179912014-08-28 03:45:35 +00001<!DOCTYPE html>
2<html>
3<head>
4<script>
5if (window.testRunner)
6 testRunner.waitUntilDone();
7
8function done()
9{
10 if (window.testRunner)
11 testRunner.notifyDone();
12}
13</script>
14</head>
15<body style="margin: 0px">
16<div style="background-color: green; width: 100px; height: 100px"></div>
17<p>This tests ensures that themed scrollbars are clipped to their iframe. You should see a green box above.</p>
18<iframe style="position: absolute; top: 100px; left: 100px;" width="1" height="1" srcdoc="
19<html><head><style>
20html,body {width:200px; height:100px;}
21::-webkit-scrollbar {height: 1px; width: 1px;}
22::-webkit-scrollbar-corner {background-color: red;}
23</style></head></html>" onload="done()"></iframe>
24</body>
25</html>