Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 Test that completions in the context of an iframe with a different origin will r esult in names of its global variables. Test passes if all global variables are found among completions AND there are NO console messages. Bug 65457. | 1 Test that completions in the context of an iframe with a different origin will r esult in names of its global variables. Test passes if all global variables are found among completions AND there are NO console messages. Bug 65457. |
| 2 | 2 |
| 3 | 3 |
| 4 myGlob completions: | 4 myGlob completions: |
| 5 myGlobalVar | 5 myGlobalVar |
| 6 myGlobalFunction | 6 myGlobalFunction |
| 7 myIFrame completions: | 7 myIFrame completions: |
| 8 self | 8 self |
| 9 top | 9 top |
| 10 window | 10 window |
| 11 proxy completions: | 11 proxy completions: |
| 12 a | 12 a |
| 13 window.counter = 0 | 13 window.counter = 0 |
| 14 MyClass with mixin completions: | 14 MyClass with mixin completions: |
| 15 myMethod | 15 myMethod |
| 16 Object completions: | |
| 17 getOwnPropertyNames | |
| 18 getOwnPropertyDescriptor | |
| 19 keys | |
| 16 | 20 |
| OLD | NEW |