Title: [190395] trunk/LayoutTests
Revision
190395
Author
calva...@igalia.com
Date
2015-10-01 00:41:12 -0700 (Thu, 01 Oct 2015)

Log Message

[Stream API] Add pending checkpoints for up-to-date readable stream related tests and fix checkpoint URL
https://bugs.webkit.org/show_bug.cgi?id=149666

Reviewed by Darin Adler.

* streams/readable-stream-reader-read.html:
* streams/reference-implementation/abstract-ops.html:
* streams/reference-implementation/bad-strategies.html:
* streams/reference-implementation/bad-underlying-sources.html:
* streams/reference-implementation/pipe-to-options.html:
* streams/reference-implementation/pipe-to.html:
* streams/reference-implementation/readable-stream-cancel.html:
* streams/reference-implementation/writable-stream-abort.html:
* streams/reference-implementation/writable-stream.html: Added and fixed checkpoint URLs.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (190394 => 190395)


--- trunk/LayoutTests/ChangeLog	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/ChangeLog	2015-10-01 07:41:12 UTC (rev 190395)
@@ -1,5 +1,22 @@
 2015-10-01  Xabier Rodriguez Calvar  <calva...@igalia.com>
 
+        [Stream API] Add pending checkpoints for up-to-date readable stream related tests and fix checkpoint URL
+        https://bugs.webkit.org/show_bug.cgi?id=149666
+
+        Reviewed by Darin Adler.
+
+        * streams/readable-stream-reader-read.html:
+        * streams/reference-implementation/abstract-ops.html:
+        * streams/reference-implementation/bad-strategies.html:
+        * streams/reference-implementation/bad-underlying-sources.html:
+        * streams/reference-implementation/pipe-to-options.html:
+        * streams/reference-implementation/pipe-to.html:
+        * streams/reference-implementation/readable-stream-cancel.html:
+        * streams/reference-implementation/writable-stream-abort.html:
+        * streams/reference-implementation/writable-stream.html: Added and fixed checkpoint URLs.
+
+2015-10-01  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
         [Streams API] Create ByteLengthQueuingStrategy object as per spec
         https://bugs.webkit.org/show_bug.cgi?id=147153
 

Modified: trunk/LayoutTests/streams/readable-stream-reader-read.html (190394 => 190395)


--- trunk/LayoutTests/streams/readable-stream-reader-read.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/readable-stream-reader-read.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -2,6 +2,8 @@
 <script src=''></script>
 <script src=''></script>
 <script>
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
+
 var test1 = async_test('Reading twice on a stream that gets closed');
 test1.step(function() {
     var controller;

Modified: trunk/LayoutTests/streams/reference-implementation/abstract-ops.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/abstract-ops.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/abstract-ops.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -4,7 +4,7 @@
 <script src=''></script>
 <!-- FIXME: enable IsReadableStreamDisturbed -->
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 test(function() {
     var rs = new ReadableStream();

Modified: trunk/LayoutTests/streams/reference-implementation/bad-strategies.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/bad-strategies.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/bad-strategies.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -2,7 +2,7 @@
 <script src=''></script>
 <script src=''></script>
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 test(function() {
     var theError = new Error('a unique string');

Modified: trunk/LayoutTests/streams/reference-implementation/bad-underlying-sources.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/bad-underlying-sources.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/bad-underlying-sources.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -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 theError = new Error('a unique string');
 

Modified: trunk/LayoutTests/streams/reference-implementation/pipe-to-options.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/pipe-to-options.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/pipe-to-options.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -3,7 +3,7 @@
 <script src=''></script>
 <script src=''></script>
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 var test1 = async_test('Piping with no options and a destination error');
 test1.step(function() {

Modified: trunk/LayoutTests/streams/reference-implementation/pipe-to.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/pipe-to.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/pipe-to.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -3,7 +3,7 @@
 <script src=''></script>
 <script src=''></script>
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 var test1 = async_test('Piping from a ReadableStream from which lots of data are readable synchronously');
 test1.step(function() {

Modified: trunk/LayoutTests/streams/reference-implementation/readable-stream-cancel.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/readable-stream-cancel.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/readable-stream-cancel.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -3,6 +3,8 @@
 <script src=''></script>
 <script src=''></script>
 <script>
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
+
 var test1 = async_test('ReadableStream cancellation: integration test on an infinite stream derived from a random push source');
 test1.step(function() {
     var randomSource = new RandomPushSource();

Modified: trunk/LayoutTests/streams/reference-implementation/writable-stream-abort.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/writable-stream-abort.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/writable-stream-abort.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -3,7 +3,7 @@
 <script src=''></script>
 <script src=''></script>
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 var test1 = async_test('Aborting a WritableStream immediately prevents future writes');
 test1.step(function() {

Modified: trunk/LayoutTests/streams/reference-implementation/writable-stream.html (190394 => 190395)


--- trunk/LayoutTests/streams/reference-implementation/writable-stream.html	2015-10-01 07:38:52 UTC (rev 190394)
+++ trunk/LayoutTests/streams/reference-implementation/writable-stream.html	2015-10-01 07:41:12 UTC (rev 190395)
@@ -3,7 +3,7 @@
 <script src=''></script>
 <script src=''></script>
 <script>
-// This is updated till ec5ffa0 of the spec.
+// This is updated till https://github.com/whatwg/streams/commit/ec5ffa036308d9f6350d2946560d48cdbf090939
 
 function writeArrayToStream(array, writableStream) {
     array.forEach(function(chunk) { writableStream.write(chunk); })
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to