Title: [105814] trunk/LayoutTests
Revision
105814
Author
[email protected]
Date
2012-01-24 14:39:21 -0800 (Tue, 24 Jan 2012)

Log Message

Change reference of revokeObjectURL in worker-apply-blob-url-to-xhr.html to use webkitURL.
https://bugs.webkit.org/show_bug.cgi?id=76942

Reviewed by Jian Li.

* fast/files/workers/resources/worker-apply-blob-url-to-xhr.js:
(onmessage):
* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (105813 => 105814)


--- trunk/LayoutTests/ChangeLog	2012-01-24 22:36:56 UTC (rev 105813)
+++ trunk/LayoutTests/ChangeLog	2012-01-24 22:39:21 UTC (rev 105814)
@@ -1,3 +1,14 @@
+2012-01-24  David Levin  <[email protected]>
+
+        Change reference of revokeObjectURL in worker-apply-blob-url-to-xhr.html to use webkitURL.
+        https://bugs.webkit.org/show_bug.cgi?id=76942
+
+        Reviewed by Jian Li.
+
+        * fast/files/workers/resources/worker-apply-blob-url-to-xhr.js:
+        (onmessage):
+        * platform/chromium/test_expectations.txt:
+
 2012-01-24  Geoffrey Garen  <[email protected]>
 
         JSValue::toString() should return a JSString* instead of a UString

Modified: trunk/LayoutTests/fast/files/workers/resources/worker-apply-blob-url-to-xhr.js (105813 => 105814)


--- trunk/LayoutTests/fast/files/workers/resources/worker-apply-blob-url-to-xhr.js	2012-01-24 22:36:56 UTC (rev 105813)
+++ trunk/LayoutTests/fast/files/workers/resources/worker-apply-blob-url-to-xhr.js	2012-01-24 22:39:21 UTC (rev 105814)
@@ -29,7 +29,7 @@
     sendXMLHttpRequest("POST", fileURL);
 
     log("Test that XMLHttpRequest GET fails after the blob URL is revoked.");
-    revokeObjectURL(fileURL);
+    webkitURL.revokeObjectURL(fileURL);
     sendXMLHttpRequest("GET", fileURL);
 
     log("DONE");

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (105813 => 105814)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-24 22:36:56 UTC (rev 105813)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-24 22:39:21 UTC (rev 105814)
@@ -193,8 +193,6 @@
 BUGWK74459 SKIP : fast/workers/worker-messageport.html = CRASH
 BUGWK74459 SKIP : fast/workers/worker-multi-port.html = CRASH
 
-BUGWK71968 : fast/files/workers/worker-apply-blob-url-to-xhr.html = TEXT
-
 BUGCR108798 LINUX : fast/filesystem/workers/file-writer-events.html = CRASH PASS
 
 // Page Cache - based tests. Chromium disables page cache because the WebKit page cache keeps previously
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to