| Index: third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/basic-plumbing-main-to-worker.html
|
| diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/basic-plumbing-main-to-worker.html b/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/basic-plumbing-main-to-worker.html
|
| deleted file mode 100644
|
| index fab41ac19166cabd8d1d5a3268e5d705a5df946a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/basic-plumbing-main-to-worker.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../../../resources/testharness.js"></script>
|
| -<script src="../../../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -if (window.internals)
|
| - internals.settings.setCompositorWorkerEnabled(true);
|
| -
|
| -var test = async_test('Tests that a change from the main thread is received on the compositor thread');
|
| -var worker;
|
| -
|
| -test.step(function(){
|
| - worker = new CompositorWorker('resources/basic-plumbing-main-to-worker.js');
|
| - worker.onmessage = test.step_func(function(e){
|
| - assert_equals(e.data.value, 42);
|
| - test.done();
|
| - });
|
| - worker.postMessage({value: 42});
|
| -});
|
| -</script>
|
|
|