Changeset 190158 in webkit


Ignore:
Timestamp:
Sep 23, 2015 3:04:24 AM (9 years ago)
Author:
calvaris@igalia.com
Message:

[Streams API] Change a const in the tee tests
https://bugs.webkit.org/show_bug.cgi?id=148294

Reviewed by Darin Adler.

  • streams/reference-implementation/readable-stream-tee.html: Dumb change, replaced a const with var and added

the checkpoint of the spec commit.

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r190157 r190158  
     12015-09-23  Xabier Rodriguez Calvar  <calvaris@igalia.com>
     2
     3        [Streams API] Change a const in the tee tests
     4        https://bugs.webkit.org/show_bug.cgi?id=148294
     5
     6        Reviewed by Darin Adler.
     7
     8        * streams/reference-implementation/readable-stream-tee.html: Dumb change, replaced a const with var and added
     9        the checkpoint of the spec commit.
     10
    1112015-09-23  ChangSeok Oh  <changseok.oh@collabora.com>
    212
  • trunk/LayoutTests/streams/reference-implementation/readable-stream-tee.html

    r188684 r190158  
    44<script src='resources/streams-utils.js'></script>
    55<script>
     6// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
     7
    68test(function() {
    79    var rs = new ReadableStream();
     
    1820test1.step(function() {
    1921    var readCalls = 0;
    20     const rs = new ReadableStream({
     22    var rs = new ReadableStream({
    2123        start: function(c) {
    2224            c.enqueue('a');
Note: See TracChangeset for help on using the changeset viewer.