Title: [106405] trunk/LayoutTests
Revision
106405
Author
[email protected]
Date
2012-01-31 15:17:25 -0800 (Tue, 31 Jan 2012)

Log Message

IndexedDB: Re-enable structured-clone test
https://bugs.webkit.org/show_bug.cgi?id=77239

This test was landed disabled, since it was failing. Turns out Date serialization
differs ("PST" vs. "Pacific Standard Time") across machines, so debug statements
in the test were removed.

Reviewed by Tony Chang.

* platform/chromium/test_expectations.txt:
* storage/indexeddb/structured-clone-expected.txt:
* storage/indexeddb/structured-clone.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (106404 => 106405)


--- trunk/LayoutTests/ChangeLog	2012-01-31 23:11:13 UTC (rev 106404)
+++ trunk/LayoutTests/ChangeLog	2012-01-31 23:17:25 UTC (rev 106405)
@@ -1,3 +1,18 @@
+2012-01-31  Joshua Bell  <[email protected]>
+
+        IndexedDB: Re-enable structured-clone test
+        https://bugs.webkit.org/show_bug.cgi?id=77239
+
+        This test was landed disabled, since it was failing. Turns out Date serialization
+        differs ("PST" vs. "Pacific Standard Time") across machines, so debug statements
+        in the test were removed.
+
+        Reviewed by Tony Chang.
+
+        * platform/chromium/test_expectations.txt:
+        * storage/indexeddb/structured-clone-expected.txt:
+        * storage/indexeddb/structured-clone.html:
+
 2012-01-31  Balazs Kelemen  <[email protected]>
 
         [Qt][WK2] bot lacks mobility

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (106404 => 106405)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-31 23:11:13 UTC (rev 106404)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-31 23:17:25 UTC (rev 106405)
@@ -4037,8 +4037,6 @@
 BUGWK77315 WIN MAC : fast/events/touch/touch-gesture-scroll.html = PASS TEXT
 BUGWK77324 WIN MAC DEBUG SLOW : fast/js/dfg-int32array.html = PASS
 
-BUGWK77239 : storage/indexeddb/structured-clone.html = PASS TEXT
-
 BUGWK77397 : plugins/crash-restoring-plugin-page-from-page-cache.html = TIMEOUT TEXT
 BUGWK77412 LEOPARD : media/media-blocked-by-beforeload.html = TEXT
 BUGWK77416 LINUX : inspector/timeline/timeline-receive-response-event.html = PASS TEXT

Modified: trunk/LayoutTests/storage/indexeddb/structured-clone-expected.txt (106404 => 106405)


--- trunk/LayoutTests/storage/indexeddb/structured-clone-expected.txt	2012-01-31 23:11:13 UTC (rev 106404)
+++ trunk/LayoutTests/storage/indexeddb/structured-clone-expected.txt	2012-01-31 23:17:25 UTC (rev 106405)
@@ -22,7 +22,6 @@
 Testing: undefined
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: undefined (type: undefined)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -31,7 +30,6 @@
 Testing: null
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: null (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -42,7 +40,6 @@
 Testing: true
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: true (type: boolean)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -50,7 +47,6 @@
 Testing: false
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: false (type: boolean)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -61,7 +57,6 @@
 Testing: NaN
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: NaN (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -69,7 +64,6 @@
 Testing: -Infinity
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -Infinity (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -77,7 +71,6 @@
 Testing: -Number.MAX_VALUE
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -1.7976931348623157e+308 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -85,7 +78,6 @@
 Testing: -Number.MIN_VALUE
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -5e-324 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -93,7 +85,6 @@
 Testing: -0
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 0 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -101,7 +92,6 @@
 Testing: 0
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 0 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -109,7 +99,6 @@
 Testing: Number.MIN_VALUE
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 5e-324 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -117,7 +106,6 @@
 Testing: Number.MAX_VALUE
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 1.7976931348623157e+308 (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -125,7 +113,6 @@
 Testing: Infinity
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Infinity (type: number)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -136,7 +123,6 @@
 Testing: ''
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is:  (type: string)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -144,7 +130,6 @@
 Testing: 'this is a sample string'
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: this is a sample string (type: string)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -152,7 +137,6 @@
 Testing: 'null(\0)'
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: null() (type: string)
 store.put(value, 'key')
 store.get('key')
 PASS is(test_data, result) is true
@@ -163,10 +147,8 @@
 Testing: new Boolean(true)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: true (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): true
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -176,10 +158,8 @@
 Testing: new Boolean(false)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: false (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): false
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -192,10 +172,8 @@
 Testing: new Number(NaN)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: NaN (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): NaN
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -205,10 +183,8 @@
 Testing: new Number(-Infinity)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -Infinity (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): -Infinity
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -218,10 +194,8 @@
 Testing: new Number(-Number.MAX_VALUE)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -1.7976931348623157e+308 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): -1.7976931348623157e+308
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -231,10 +205,8 @@
 Testing: new Number(-Number.MIN_VALUE)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: -5e-324 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): -5e-324
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -244,10 +216,8 @@
 Testing: new Number(-0)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 0 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): 0
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -257,10 +227,8 @@
 Testing: new Number(0)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 0 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): 0
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -270,10 +238,8 @@
 Testing: new Number(Number.MIN_VALUE)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 5e-324 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): 5e-324
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -283,10 +249,8 @@
 Testing: new Number(Number.MAX_VALUE)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: 1.7976931348623157e+308 (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): 1.7976931348623157e+308
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -296,10 +260,8 @@
 Testing: new Number(Infinity)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Infinity (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Infinity
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -312,10 +274,8 @@
 Testing: new String()
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is:  (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): 
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -325,10 +285,8 @@
 Testing: new String('this is a sample string')
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: this is a sample string (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): this is a sample string
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -338,10 +296,8 @@
 Testing: new String('null(\0)')
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: null() (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): null()
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -354,10 +310,8 @@
 Testing: new Date(-1e13)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Sun Feb 09 1653 22:13:20 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Sun Feb 09 1653 22:13:20 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -367,10 +321,8 @@
 Testing: new Date(-1e12)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Sun Apr 24 1938 15:13:20 GMT-0700 (PDT) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Sun Apr 24 1938 15:13:20 GMT-0700 (PDT)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -380,10 +332,8 @@
 Testing: new Date(-1e9)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Sat Dec 20 1969 02:13:20 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Sat Dec 20 1969 02:13:20 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -393,10 +343,8 @@
 Testing: new Date(-1e6)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Wed Dec 31 1969 15:43:20 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Wed Dec 31 1969 15:43:20 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -406,10 +354,8 @@
 Testing: new Date(-1e3)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Wed Dec 31 1969 15:59:59 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Wed Dec 31 1969 15:59:59 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -419,10 +365,8 @@
 Testing: new Date(0)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Wed Dec 31 1969 16:00:00 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Wed Dec 31 1969 16:00:00 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -432,10 +376,8 @@
 Testing: new Date(1e3)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Wed Dec 31 1969 16:00:01 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Wed Dec 31 1969 16:00:01 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -445,10 +387,8 @@
 Testing: new Date(1e6)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Wed Dec 31 1969 16:16:40 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Wed Dec 31 1969 16:16:40 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -458,10 +398,8 @@
 Testing: new Date(1e9)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Mon Jan 12 1970 05:46:40 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Mon Jan 12 1970 05:46:40 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -471,10 +409,8 @@
 Testing: new Date(1e12)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Sat Sep 08 2001 18:46:40 GMT-0700 (PDT) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Sat Sep 08 2001 18:46:40 GMT-0700 (PDT)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -484,10 +420,8 @@
 Testing: new Date(1e13)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: Sat Nov 20 2286 09:46:40 GMT-0800 (PST) (type: object)
 store.put(value, 'key')
 store.get('key')
-String(result): Sat Nov 20 2286 09:46:40 GMT-0800 (PST)
 PASS typeof result is "object"
 PASS Object.prototype.toString.call(result) is Object.prototype.toString.call(test_data)
 PASS test_data !== result is true
@@ -500,7 +434,6 @@
 Testing RegExp: new RegExp()
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /(?:)/ (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -510,7 +443,6 @@
 Testing RegExp: /abc/
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/ (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -520,7 +452,6 @@
 Testing RegExp: /abc/g
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/g (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -530,7 +461,6 @@
 Testing RegExp: /abc/i
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/i (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -540,7 +470,6 @@
 Testing RegExp: /abc/gi
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/gi (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -550,7 +479,6 @@
 Testing RegExp: /abc/m
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/m (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -560,7 +488,6 @@
 Testing RegExp: /abc/mg
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/gm (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -570,7 +497,6 @@
 Testing RegExp: /abc/mi
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/im (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -580,7 +506,6 @@
 Testing RegExp: /abc/mgi
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: /abc/gim (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -595,7 +520,6 @@
 test_data = canvas.getContext('2d').getImageData(0, 0, 8, 8)
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: [object ImageData] (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -625,7 +549,6 @@
 test_data[30] = null
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: foo,bar,,,,,,,,,true,false,,,,,,,,,123,456,,,,,,,,, (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true
@@ -649,7 +572,6 @@
 test_data[''] = null
 transaction = db.transaction('storeName', IDBTransaction.READ_WRITE)
 store = transaction.objectStore('storeName')
-value is: foo,bar (type: object)
 store.put(value, 'key')
 store.get('key')
 PASS test_data !== result is true

Modified: trunk/LayoutTests/storage/indexeddb/structured-clone.html (106404 => 106405)


--- trunk/LayoutTests/storage/indexeddb/structured-clone.html	2012-01-31 23:11:13 UTC (rev 106404)
+++ trunk/LayoutTests/storage/indexeddb/structured-clone.html	2012-01-31 23:17:25 UTC (rev 106405)
@@ -114,7 +114,6 @@
     transaction._onabort_ = unexpectedAbortCallback;
     evalAndLog("store = transaction.objectStore('storeName')");
 
-    debug("value is: " + String(value) + " (type: " + typeof value + ")");
     window.value = value;
     request = evalAndLog("store.put(value, 'key')");
     request._onerror_ = unexpectedErrorCallback;
@@ -122,7 +121,6 @@
         request = evalAndLog("store.get('key')");
         request._onerror_ = unexpectedErrorCallback;
         request._onsuccess_ = function(e) {
-            //debug("got back: " + String(request.result) + " (type: " + typeof request.result + ")");
             callback(request.result);
         };
     };
@@ -168,7 +166,6 @@
     test_data = value;
     testValue(test_data, function(result) {
         window.result = result;
-        debug("String(result): " + String(result));
         shouldBeEqualToString("typeof result", "object");
         shouldBe("Object.prototype.toString.call(result)", "Object.prototype.toString.call(test_data)");
         shouldBeTrue("test_data !== result");
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to