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