Title: [190158] trunk/LayoutTests
Revision
190158
Author
calva...@igalia.com
Date
2015-09-23 03:04:24 -0700 (Wed, 23 Sep 2015)

Log 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.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (190157 => 190158)


--- trunk/LayoutTests/ChangeLog	2015-09-23 08:32:59 UTC (rev 190157)
+++ trunk/LayoutTests/ChangeLog	2015-09-23 10:04:24 UTC (rev 190158)
@@ -1,3 +1,13 @@
+2015-09-23  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
+        [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.
+
 2015-09-23  ChangSeok Oh  <changseok...@collabora.com>
 
         [GTK] media/media-controls-timeline-updates.html timeouts

Modified: trunk/LayoutTests/streams/reference-implementation/readable-stream-tee.html (190157 => 190158)


--- trunk/LayoutTests/streams/reference-implementation/readable-stream-tee.html	2015-09-23 08:32:59 UTC (rev 190157)
+++ trunk/LayoutTests/streams/reference-implementation/readable-stream-tee.html	2015-09-23 10:04:24 UTC (rev 190158)
@@ -3,6 +3,8 @@
 <script src=''></script>
 <script src=''></script>
 <script>
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
+
 test(function() {
     var rs = new ReadableStream();
 
@@ -17,7 +19,7 @@
 var test1 = async_test('ReadableStream teeing: should be able to read one branch to the end without affecting the other');
 test1.step(function() {
     var readCalls = 0;
-    const rs = new ReadableStream({
+    var rs = new ReadableStream({
         start: function(c) {
             c.enqueue('a');
             c.enqueue('b');
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to