Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Unified Diff: LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html

Issue 1286123004: Ensure that Service Worker clients are always returned in MRU order (2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Restructure tests for readability. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html
diff --git a/LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html b/LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html
index 5a0ea579a14819cd2077b1b1f0e9ef55cc2ae120..fa3b56f22ddccd2b30b231d6ddf2c5c431cfae11 100644
--- a/LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html
+++ b/LayoutTests/http/tests/serviceworker/clients-matchall-client-types.html
@@ -26,7 +26,6 @@ var expected_with_all = [
function test_matchall(frame, expected, query_options) {
// Make sure the frame gets focus.
frame.focus();
- expected.sort(function(a, b) { return a[2] > b[2] ? 1 : -1; });
return new Promise(function(resolve, reject) {
var channel = new MessageChannel();
channel.port1.onmessage = function(e) {

Powered by Google App Engine
This is Rietveld 408576698