Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/console/console-format-es6.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format-es6.html b/third_party/WebKit/LayoutTests/inspector/console/console-format-es6.html |
| index 64437fd35f9235d123a9a04f3ee17031e151cfc4..c2687a692a628fb571a59746a7499328a7570a40 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-format-es6.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-format-es6.html |
| @@ -53,9 +53,15 @@ function onload() |
| var p = Promise.reject(-0); |
| p.catch(function() {}); |
| + var genFunction = function *() { |
| + yield 1; |
| + yield 2; |
| + } |
| + var generator = genFunction(); |
| + |
| globals = [ |
| p, smb1, smb2, obj, map, weakMap, set, weakSet, |
| - mapMap0, mapMap, setSet0, setSet, bigmap, |
| + mapMap0, mapMap, setSet0, setSet, bigmap, p, generator |
|
lushnikov
2017/03/23 20:48:18
why do you add p one more time?
luoe
2017/03/23 20:55:56
Sorry, that's a typo! I didn't see that it was al
|
| ]; |
| runTest(); |