blob: f1a27145f5525ea4dbd918e7b96060bd42e107c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<head>
<style type="text/css"> @import "resources/scrollable-style.css"; </style>
<script src="../../resources/js-test.js"></script>
<script src="resources/scrollable-area.js"></script>
</head>
<body onload="runTest(4);">
<!-- 'overflow:hidden' on an inner frame works on Firefox and Opera, but not on WebKit-based Browsers: Chromium or Safari-->
<iframe width=120 style="overflow: hidden;" src="resources/generic-scrollable-content.html"></iframe>
<iframe width=120 style="overflow-x: hidden;" src="resources/generic-scrollable-content.html"></iframe>
<div id='console'></div>
</html>
|