| Index: third_party/WebKit/LayoutTests/fast/compositorworker/compositor-attribute-change-worker.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-attribute-change-worker.html b/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-attribute-change-worker.html
|
| deleted file mode 100644
|
| index afea40ba2a2b4395b0bd3e84f2a203a5fd938bb0..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-attribute-change-worker.html
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<div id="container"></div>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -
|
| -var test = async_test("This test checks that a compositor proxy can be mutated from the compositor worker thread.");
|
| -
|
| -function processMessage(msg) {
|
| - assert_equals('success', msg.data);
|
| - test.done();
|
| -}
|
| -
|
| -var worker = new CompositorWorker('resources/proxy-mutate.js');
|
| -worker.onmessage = processMessage;
|
| -var proxy = new CompositorProxy(document.getElementById('container'), ['opacity']);
|
| -assert_true(proxy.supports('opacity'));
|
| -assert_false(proxy.supports('touch'));
|
| -assert_false(proxy.supports('transform'));
|
| -assert_false(proxy.supports('scrollTop'));
|
| -worker.postMessage([proxy, 'opacity']);
|
| -
|
| -</script>
|
|
|