Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/WebKit/LayoutTests/fast/compositorworker/compositor-proxy-disconnect-worker.html

Issue 1449953002: compositor-worker: Refactor CompositorWorkerManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add documentation and ASSERTS for some subtleties. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/compositorworker/compositor-proxy-disconnect-worker.html
diff --git a/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-proxy-disconnect-worker.html b/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-proxy-disconnect-worker.html
deleted file mode 100644
index 2695b45df7b59c44165f4d8c225307ffcccda406..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/compositorworker/compositor-proxy-disconnect-worker.html
+++ /dev/null
@@ -1,19 +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(function() {
- function processMessage(event) {
- var message = event.data;
- assert_equals('NoModificationAllowedError', message);
- test.done();
- }
-
- var worker = new CompositorWorker('resources/proxy-disconnect.js');
- worker.onmessage = processMessage;
- var proxy = new CompositorProxy(document.getElementById('container'), ['opacity']);
- worker.postMessage(proxy);
-}, "This test checks that an element's compositor proxy cannot be mutated after disconnect().");
-</script>

Powered by Google App Engine
This is Rietveld 408576698