dbates@webkit.org | 9417991 | 2014-08-28 03:45:35 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <script> |
| 5 | if (window.testRunner) |
| 6 | testRunner.waitUntilDone(); |
| 7 | |
| 8 | function 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> |
| 20 | html,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> |