diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
commit | 648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/manual-tests/inspector/display-sql-null.html | |
parent | a65af38181ac7d34544586bdb5cd004de93897ad (diff) | |
download | external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2 |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebCore/manual-tests/inspector/display-sql-null.html')
-rw-r--r-- | WebCore/manual-tests/inspector/display-sql-null.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/WebCore/manual-tests/inspector/display-sql-null.html b/WebCore/manual-tests/inspector/display-sql-null.html deleted file mode 100644 index 1d1403b..0000000 --- a/WebCore/manual-tests/inspector/display-sql-null.html +++ /dev/null @@ -1,21 +0,0 @@ -<script> - try { - var db = openDatabase("InspectorTest", "0.1", "Database for Inspector tests", 200000); - db.transaction(function(tx) { - tx.executeSql("CREATE TABLE DisplaySQLNull (test TEXT)", [], function(tx) { - tx.executeSql("INSERT INTO DisplaySQLNull (test) VALUES (NULL)"); - }) - }); - } catch (e) { - } -</script> -<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=18837">Bug 18837: Database panel fails to display tables if any value is NULL</a>.</p> -<p>To test:</p> -<ol> - <li>Open the Inspector</li> - <li>Go to the Databases panel</li> - <li>Click on the <code>DisplaySQLNull</code> table inside the <code>InspectorTest</code> database</li> -</ol> -<p>If the contents of the table appear (a single row with the value -"<code>null</code>" in the <code>test</code> column), you have passed the -test.</p> |