Chromium Code Reviews| Index: Source/web/tests/data/fullscreen_div.html |
| diff --git a/Source/web/tests/data/fullscreen_div.html b/Source/web/tests/data/fullscreen_div.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8a4777be445e38d2a351dcbff677cb90678a38b7 |
| --- /dev/null |
| +++ b/Source/web/tests/data/fullscreen_div.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + div#div1 { |
| + background: blue; |
| + width: 200px; |
| + height: 200px; |
| + } |
| + div#div2 { |
| + background: red; |
| + width: 2000px; |
| + height: 2000px; |
| + } |
| +</style> |
| +<body> |
| + <div id="div1">will go fullscreen</div> |
| + <div id="div2">will not go fullscreen</div> |
| +</body> |