⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 119454 in webkit


Ignore:
Timestamp:
Jun 4, 2012, 9:29:31 PM (14 years ago)
Author:
leo.yang@torchmobile.com.cn
Message:

Syntax error in fast/filesystem/resources/file-writer-gc-blob.js
https://bugs.webkit.org/show_bug.cgi?id=87939

Reviewed by Alexey Proskuryakov.

  • fast/filesystem/resources/file-writer-gc-blob.js: Add parentheses around the blob data.

(startWrite):

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r119450 r119454  
     12012-06-04  Leo Yang  <leo.yang@torchmobile.com.cn>
     2
     3        Syntax error in fast/filesystem/resources/file-writer-gc-blob.js
     4        https://bugs.webkit.org/show_bug.cgi?id=87939
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * fast/filesystem/resources/file-writer-gc-blob.js: Add parentheses around the blob data.
     9        (startWrite):
     10
    1112012-06-04  Jessie Berlin  <jberlin@apple.com>
    212
  • trunk/LayoutTests/fast/filesystem/resources/file-writer-gc-blob.js

    r115582 r119454  
    2424function startWrite(writer) {
    2525    // Let's make it about a megabyte.
    26     var blob = tenXBlob(new Blob["lorem ipsum"]);
     26    var blob = tenXBlob(new Blob(["lorem ipsum"]));
    2727    blob = tenXBlob(blob);
    2828    blob = tenXBlob(blob);
Note: See TracChangeset for help on using the changeset viewer.