Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/root-scroller-child.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/root-scroller-child.html b/third_party/WebKit/Source/web/tests/data/root-scroller-child.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d5fb02449995f8f2b8de16ca711ffc019c8f90cc |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/tests/data/root-scroller-child.html |
| @@ -0,0 +1,37 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
| + <style> |
| + ::-webkit-scrollbar { |
| + width: 0px; |
| + height: 0px; |
| + } |
| + |
| + body, html { |
| + width: 100%; |
| + height: 100%; |
| + } |
| + |
| + body { |
| + margin: 0px; |
| + } |
| + |
| + #container { |
| + width: 200px; |
| + height: 200px; |
| + overflow: auto; |
| + } |
| + |
| + #spacer { |
| + width: 400px; |
| + height: 400px; |
| + } |
| + </style> |
| + </head> |
| + |
| + <body> |
| + <div id="container"> |
| + <div id="spacer"></div> |
| + </div> |
| + </body> |
| +</html> |