| Index: LayoutTests/fast/compositorworker/resources/proxy-echo.js
|
| diff --git a/LayoutTests/fast/compositorworker/resources/proxy-echo.js b/LayoutTests/fast/compositorworker/resources/proxy-echo.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..63571428def4aeb90844bf564e62f2df8500cbcb
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/compositorworker/resources/proxy-echo.js
|
| @@ -0,0 +1,7 @@
|
| +onmessage = function(msg) {
|
| + var proxy = msg.data;
|
| + if (typeof proxy == "CompositorProxy")
|
| + postMessage({type: "error"});
|
| + else
|
| + postMessage({type: 'response', id: proxy.elementId, flags: proxy.attributes});
|
| +}
|
|
|