summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view.html
blob: 4d3a23f4608195f059d262a3bdf89c7e5be049c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
    <script src="../../resources/js-test.js"></script>
    <style>

        .container {
            display : inline-block;
            width : 200px;
            height : 200px;
            overflow : scroll; 
        }

        .border {
            border : 500px solid white;
        }

        .padding {
            padding : 500px;
        }

        .margin {
            margin : 500px;
        }

    </style>
</head>
<body>
    <div class="container">
        <canvas width="400" height="400"></canvas>
    </div>
    <script src="script-tests/canvas-scroll-path-into-view.js"></script>
</body>
</html>