diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-12 01:08:26 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-12 01:08:26 +0000 |
commit | 94c694d389ceb2c797d7ee1854cc84c87349c2f5 (patch) | |
tree | d34c6032064aa9bb8569618b15c5984118a54cd1 /dom/abort/tests/file_abort_controller.html | |
parent | e97a29a6569fac73e81cf46a0e682ac926ea3456 (diff) | |
download | UXP-94c694d389ceb2c797d7ee1854cc84c87349c2f5.tar UXP-94c694d389ceb2c797d7ee1854cc84c87349c2f5.tar.gz UXP-94c694d389ceb2c797d7ee1854cc84c87349c2f5.tar.lz UXP-94c694d389ceb2c797d7ee1854cc84c87349c2f5.tar.xz UXP-94c694d389ceb2c797d7ee1854cc84c87349c2f5.zip |
Issue #1587 - Part 8: Remove controller follow/unfollow
Since it didn't end up being in the final spec after all.
Diffstat (limited to 'dom/abort/tests/file_abort_controller.html')
-rw-r--r-- | dom/abort/tests/file_abort_controller.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dom/abort/tests/file_abort_controller.html b/dom/abort/tests/file_abort_controller.html index e4137aac9..3a15fa346 100644 --- a/dom/abort/tests/file_abort_controller.html +++ b/dom/abort/tests/file_abort_controller.html @@ -32,49 +32,6 @@ function testUpdateData() { next(); } -function testFollowingOurself() { - // Let's follow ourself - var fc = new FetchController(); - fc.follow(fc.signal); - - fc.abort(); - is(fc.signal.aborted, true, "Signal is aborted"); - - next(); -} - -function testFollowingOther() { - // Let's follow another one - var fc1 = new FetchController(); - var fc2 = new FetchController(); - fc1.follow(fc2.signal); - - fc2.abort(); - - is(fc1.signal.aborted, true, "Signal is aborted"); - is(fc2.signal.aborted, true, "Signal is aborted"); - - next(); -} - -function testFollowingLoop() { - // fc1 -> fc2 -> fc3 -> fc1 - var fc1 = new FetchController(); - var fc2 = new FetchController(); - var fc3 = new FetchController(); - fc1.follow(fc2.signal); - fc2.follow(fc3.signal); - fc3.follow(fc1.signal); - - fc3.abort(); - - is(fc1.signal.aborted, true, "Signal is aborted"); - is(fc2.signal.aborted, true, "Signal is aborted"); - is(fc3.signal.aborted, true, "Signal is aborted"); - - next(); -} - function testAbortEvent() { var fc = new FetchController(); fc.signal.onabort = function(e) { @@ -131,11 +88,6 @@ var steps = [ testWebIDL, testUpdateData, - // Following algorithm - testFollowingOurself, - testFollowingOther, - testFollowingLoop, - // Event propagation testAbortEvent, |