summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/bundle-file.html
blob: f426ebdb07603b5cc48d64a58674fc2f63d1d4a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
    <script>
        function testFile(file)
        {
            if (!(file instanceof File))
                return false;
        
            return true;
        }
    </script>
</head>
<body>
    File test.
</body>
</html>