summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/execute-sql-args.html
blob: 8a36a7ad6b3181771847cf9c253e8aad362497e7 (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
<html>

<head>
<script src="execute-sql-args.js"></script>
<script>

var DB_TEST_SUFFIX = "_dom";

function log(message)
{
    document.getElementById("console").innerText += message + "\n";
}

function setupAndRunTest()
{
    if (window.layoutTestController) {
        layoutTestController.dumpAsText();
        layoutTestController.waitUntilDone();
    }
    runTest();
}

</script>
</head>

<body onload="setupAndRunTest()">
<pre id="console"></pre>
</body>

</html>