Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/clients-get-client-types.https.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/clients-get-client-types.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/clients-get-client-types.https.html |
| index 0005f98c4bb4a80458ef3131e513c3ab482378ce..02434147ced78b13a62c7c3a93f49887a673689a 100644 |
| --- a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/clients-get-client-types.https.html |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/clients-get-client-types.https.html |
| @@ -62,8 +62,8 @@ function wait_for_clientId() { |
| } |
| var expected = [ |
| - /* visibilityState, focused, url, frameType */ |
| - ['visible', true, normalizeURL(scope) + '-frame.html', 'nested'], |
| - [undefined, undefined, normalizeURL(scope) + '-shared-worker.js', 'none'] |
| + /* visibilityState, focused, url, type, frameType */ |
|
falken
2017/05/15 06:39:28
nit: while here can you change this to a // style
leonhsl(Using Gerrit)
2017/05/16 02:54:28
Done.
|
| + ['visible', true, normalizeURL(scope) + '-frame.html', 'window', 'nested'], |
| + [undefined, undefined, normalizeURL(scope) + '-shared-worker.js', 'sharedworker', 'none'] |
| ]; |
| </script> |