| Index: LayoutTests/http/tests/filesystem/no-cache-filesystem-url.html
|
| diff --git a/LayoutTests/http/tests/filesystem/no-cache-filesystem-url.html b/LayoutTests/http/tests/filesystem/no-cache-filesystem-url.html
|
| deleted file mode 100644
|
| index 2844c72499183faba11341b447f9c30622ad1c45..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/filesystem/no-cache-filesystem-url.html
|
| +++ /dev/null
|
| @@ -1,58 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <body>
|
| - <p id="result">
|
| - </p>
|
| - <script>
|
| - var expected = -1;
|
| - function getFileWriter(callback) {
|
| - webkitRequestFileSystem(PERSISTENT, 1024, function(fs) {
|
| - fs.root.getFile("/caching-test.js", {create:true}, function(file) {
|
| - file.createWriter(function(writer) {
|
| - writer.onwriteend = function() {
|
| - writer.onwriteend = undefined;
|
| - callback(file, writer);
|
| - }
|
| - writer.truncate(0);
|
| - });
|
| - });
|
| - });
|
| - }
|
| -
|
| - function writeRandToFile(writer, callback) {
|
| - var rand = Math.round(Math.random() * 1000);
|
| - writer.onwriteend = function() {
|
| - callback(rand);
|
| - };
|
| - writer.write(new Blob(['document.getElementById("result").innerHTML = (expected == ' + rand + ') ? "SUCCESS" : "FAILURE";'], {type:'text/plain'}));
|
| - }
|
| -
|
| - getFileWriter(function(file, writer) {
|
| - writeRandToFile(writer, function(rand) {
|
| - var script = document.createElement('script');
|
| - script.src = file.toURL();
|
| - if (window.location.search != '?reload=1') {
|
| - script.onload = function() {
|
| - window.location.href = window.location.href + '?reload=1'
|
| - };
|
| - } else {
|
| - script.onload = function() {
|
| - file.remove(function() {
|
| - if (window.testRunner) {
|
| - testRunner.notifyDone();
|
| - }
|
| - });
|
| - };
|
| - }
|
| - expected = rand;
|
| - document.body.appendChild(script);
|
| - });
|
| - });
|
| -
|
| - if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| - }
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|