1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/content/test/plugins/plugin_outsideScrollArea.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<meta charset="utf-8"> 1.8 +<style type="text/css"> 1.9 +#container { 1.10 + position: fixed; 1.11 + top: 0; 1.12 + bottom: 0; 1.13 + width: 100%; 1.14 + height: 100%; 1.15 + background: blue; 1.16 +} 1.17 + 1.18 +#test { 1.19 + width: 400px; 1.20 + height: 400px; 1.21 + position: absolute; 1.22 +} 1.23 +</style> 1.24 +</head> 1.25 +<body> 1.26 + <div id="container"></div> 1.27 +</body> 1.28 +</html>