Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 onmessage = function(msg) { | |
| 2 var proxy = msg.data; | |
| 3 if (typeof proxy == "CompositorProxy") | |
| 4 postMessage({type: "error"}); | |
| 5 else | |
| 6 postMessage({type: 'response', opacity: proxy.supports('opacity'), trans form: proxy.supports('transform')}); | |
| 7 } | |
| OLD | NEW |